IOS7 can download without any problems, iOS8 found hanging on the official website of the Enterprise version of the app clicked prompted whether to install the application, but confirmed that no response, looked for a long time, did not find the problem. The device console that was later viewed appears when the installation
LoadExternalDownloadManifestOperation: Ignore manifest download, already have bundleID: com.mycom.MyApp
Later, the foreign developers speculate that the iOS8 is a bug:
The biggest issue for us is so we can not be reproduce this onany of our devices. Our suspicion are that IOS 8 have some internalcache with bundles IDs and just doesn ' t install a build if it thinksthat an AP The P with the bundle ID is already installed. As theinstallation doesn ' t even start, we think that IOS are matching thebundle identifier from the manifest plist against This cache.
It will look for if the iOS cache identifier matches the bundle identifier in the Plist file, and if it matches, it will think it has been installed, and there will be no response. The above explanation is very clear. So the solution is to modify the bundle Identifier in the plist file.
For example your plist file Bundleid is com.mycom.MyApp, then modified to Com.mycom.MyApp.fixios8. (Create a fake bundleid that you can take, so iOS won't think you've installed it.) Remember to modify the Bundleid of the plist file, not the Bundleid of the application)
After the release, we can find it. Just if you have installed the app, a new blank icon will appear, because the app's Bundleid is inconsistent with your plist bundleid, and when the download is complete, it will overwrite the original app. Because it detects the download of the installed app, the Bundleid already exists and is overwritten.
Perfect solution.
Resolve IOS8 Install Enterprise Edition no reaction problem