We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents edfd974 + d32880e commit 3ea1378Copy full SHA for 3ea1378
lib/services/livesync/ios-livesync-service.ts
@@ -26,7 +26,8 @@ class IOSLiveSyncService extends liveSyncServiceBaseLib.LiveSyncServiceBase<Mobi
26
}
27
28
protected restartApplication(deviceAppData: Mobile.IDeviceAppData): IFuture<void> {
29
- return this.device.applicationManager.restartApplication(deviceAppData.appIdentifier, deviceAppData.appIdentifier.split(".")[2]);
+ let projectData: IProjectData = this.$injector.resolve("projectData");
30
+ return this.device.applicationManager.restartApplication(deviceAppData.appIdentifier, projectData.projectName);
31
32
33
protected reloadPage(deviceAppData: Mobile.IDeviceAppData): IFuture<void> {
0 commit comments