We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f81e5d commit d6852c7Copy full SHA for d6852c7
lib/services/livesync/ios-device-livesync-service.ts
@@ -24,6 +24,10 @@ export class IOSDeviceLiveSyncService extends DeviceLiveSyncServiceBase implemen
24
}
25
26
private canRefreshWithNotification(projectData: IProjectData): boolean {
27
+ if (this.device.isEmulator) {
28
+ return false;
29
+ }
30
+
31
const currentRuntimeVersion = this.$platformCommandHelper.getCurrentPlatformVersion(this.$devicePlatformsConstants.iOS, projectData);
32
const canRefresh = semver.gte(
33
semver.coerce(currentRuntimeVersion), IOSDeviceLiveSyncService.MIN_RUNTIME_VERSION_WITH_REFRESH_NOTIFICATION);
0 commit comments