We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3f16962 + 2750967 commit 4f9408aCopy full SHA for 4f9408a
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