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
439
439
}
440
440
441
441
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 ) ) ;
443
443
444
444
if ( rebuildInfo ) {
445
445
// 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