File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -439,7 +439,7 @@ export class LiveSyncService extends EventEmitter implements IDebugLiveSyncServi
439439 }
440440
441441 private async installedCachedAppPackage ( platform : string , options : IEnsureLatestAppPackageIsInstalledOnDeviceOptions ) : Promise < any > {
442- const rebuildInfo = _ . find ( options . rebuiltInformation , info => info . isEmulator === options . device . isEmulator && info . platform === platform ) ;
442+ const rebuildInfo = _ . find ( options . rebuiltInformation , info => info . platform === platform && ( this . $mobileHelper . isAndroidPlatform ( platform ) || info . isEmulator === options . device . isEmulator ) ) ;
443443
444444 if ( rebuildInfo ) {
445445 // Case where we have three devices attached, a change that requires build is found,
You can’t perform that action at this time.
0 commit comments