File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -273,7 +273,7 @@ export function getAppPath(platform, runType) {
273273 //platforms/android/app/build/outputs/apk
274274 let apks = glob . sync ( "platforms/android/build/outputs/apk/*.apk" ) . filter ( function ( file ) { return file . indexOf ( "unaligned" ) < 0 ; } ) ;
275275 if ( ! apks || apks . length === 0 ) {
276- let apks = glob . sync ( "platforms/android/app/build/outputs/apk/*.apk" ) . filter ( function ( file ) { return file . indexOf ( "unaligned" ) < 0 ; } ) ;
276+ apks = glob . sync ( "platforms/android/app/build/outputs/apk/*.apk" ) . filter ( function ( file ) { return file . indexOf ( "unaligned" ) < 0 ; } ) ;
277277 }
278278 return apks [ 0 ] ;
279279 } else if ( platform . includes ( "ios" ) ) {
Original file line number Diff line number Diff line change 4747 },
4848 "scripts" : {
4949 "postinstall" : " node ./postinstall.js" ,
50- "compile" : " tsc --watch"
50+ "prepare" : " tsc" ,
51+ "watch" : " tsc --watch"
5152 }
5253}
You can’t perform that action at this time.
0 commit comments