11import {
22 ANDROID_RELEASE_BUILD_ERROR_MESSAGE ,
3- AndroidAppBundleMessages ,
3+ AndroidAppBundleMessages
44} from "../constants" ;
55import { ValidatePlatformCommandBase } from "./command-base" ;
66import { hasValidAndroidSigning } from "../common/helpers" ;
77import { IProjectData } from "../definitions/project" ;
88import {
99 IOptions ,
1010 IPlatformValidationService ,
11- IAndroidBundleValidatorHelper ,
11+ IAndroidBundleValidatorHelper
1212} from "../declarations" ;
1313import { IPlatformsDataService } from "../definitions/platform" ;
1414import { IBuildController , IBuildDataService } from "../definitions/build" ;
@@ -42,9 +42,9 @@ export abstract class BuildCommandBase extends ValidatePlatformCommandBase {
4242 watch : {
4343 type : OptionType . Boolean ,
4444 default : false ,
45- hasSensitiveValue : false ,
45+ hasSensitiveValue : false
4646 } ,
47- hmr : { type : OptionType . Boolean , default : false , hasSensitiveValue : false } ,
47+ hmr : { type : OptionType . Boolean , default : false , hasSensitiveValue : false }
4848 } ;
4949
5050 public async executeCore ( args : string [ ] ) : Promise < string > {
@@ -132,7 +132,7 @@ export class BuildIosCommand extends BuildCommandBase implements ICommand {
132132 if ( ! this . $options . force ) {
133133 await this . $migrateController . validate ( {
134134 projectDir : this . $projectData . projectDir ,
135- platforms : [ platform ] ,
135+ platforms : [ platform ]
136136 } ) ;
137137 }
138138
@@ -180,7 +180,7 @@ export class BuildAndroidCommand extends BuildCommandBase implements ICommand {
180180
181181 public async execute ( args : string [ ] ) : Promise < void > {
182182 await this . executeCore ( [
183- this . $devicePlatformsConstants . Android . toLowerCase ( ) ,
183+ this . $devicePlatformsConstants . Android . toLowerCase ( )
184184 ] ) ;
185185
186186 if ( this . $options . aab ) {
@@ -201,7 +201,7 @@ export class BuildAndroidCommand extends BuildCommandBase implements ICommand {
201201 if ( ! this . $options . force ) {
202202 await this . $migrateController . validate ( {
203203 projectDir : this . $projectData . projectDir ,
204- platforms : [ platform ] ,
204+ platforms : [ platform ]
205205 } ) ;
206206 }
207207 this . $androidBundleValidatorHelper . validateRuntimeVersion (
0 commit comments