We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edfd974 commit d32880eCopy full SHA for d32880e
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