We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f16962 commit 2750967Copy full SHA for 2750967
lib/commands/debug.ts
@@ -18,7 +18,10 @@
18
19
this.debugService.debugStop().wait();
20
21
- let applicationId = deviceAppData.device.isEmulator ? projectData.projectName : deviceAppData.appIdentifier;
+ let applicationId = deviceAppData.appIdentifier;
22
+ if (deviceAppData.device.isEmulator && deviceAppData.platform.toLowerCase() === this.$devicePlatformsConstants.iOS.toLowerCase()) {
23
+ applicationId = projectData.projectName;
24
+ }
25
deviceAppData.device.applicationManager.stopApplication(applicationId).wait();
26
27
this.debugService.debug().wait();
0 commit comments