enterprise-distribution

Can I update an iOS Enterprise App in the background like an App Store app can?

删除回忆录丶 提交于 2019-11-27 17:49:42
问题 I have an iOS enterprise app that we are wirelessly distributing to our devices. Currently the app polls our server once a day to see if there is an app update. If there is, we try to install it by having the app call the following code: NSURL *installUrl = [NSURL URLWithString:[NSString stringWithFormat:@"itms-services://?action=download-manifest&url=%@", plistUrl]]; [[UIApplication sharedApplication] openURL:installUrl]; This causes the app to prompt the user with an alert dialog to install

Enterprise App Update Distribution on iOS 8

淺唱寂寞╮ 提交于 2019-11-26 11:35:58
I have an enterprise app that I'm distributing via an itms URL: itms-services://?action=download-manifest&url=itms-services://?action=download-manifest&url=https://$MY_PLIST_URL.plist On iOS 7, both downloads and updates work fine. On iOS 8, however, I get the error: LoadExternalDownloadManifestOperation: Ignore manifest download, already have bundleID: com.mycom.MyApp In my plist, I have <key>bundle-identifier</key> <string>com.mycom.MyApp</string> <key>bundle-version</key> <string>0.2.2</string> and on my app on iOS 8, I'm running version 0.2.1 I've also encountered this problem with our app

Enterprise App Update Distribution on iOS 8

馋奶兔 提交于 2019-11-26 02:28:56
问题 I have an enterprise app that I\'m distributing via an itms URL: itms-services://?action=download-manifest&url=itms-services://?action=download-manifest&url=https://$MY_PLIST_URL.plist On iOS 7, both downloads and updates work fine. On iOS 8, however, I get the error: LoadExternalDownloadManifestOperation: Ignore manifest download, already have bundleID: com.mycom.MyApp In my plist, I have <key>bundle-identifier</key> <string>com.mycom.MyApp</string> <key>bundle-version</key> <string>0.2.2<