我有一个通过OTA发布的企业应用程序。当我尝试安装它时,我从Xcode设备日志中得到以下错误:
LoadExternalDownloadManifestOperation: Canceling failed manifest
download for replace: [MyBundleID]
[MIClientConnection uninstallIdentifiers:withOptions:completion:]:
Uninstall requested by itunesstored (pid 2029) for identifier MyBundleID with options:

这是我的manifest.plist文件:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>items</key>
<array>
<dict>
<key>assets</key>
<array>
<dict>
<key>kind</key>
<string>software-package</string>
<key>url</key>
<string>https://myDomain/api/iosEventAppLink/EventApp.ipa</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>xxx.com.domain.EventApp</string>
<key>bundle-version</key>
<string>1.0</string>
<key>kind</key>
<string>software</string>
<key>title</key>
<string>AppName</string>
</dict>
</dict>
</array>
</dict>
</plist>任何帮助都将不胜感激。
发布于 2018-03-29 22:13:37
对于任何想要了解更多关于为什么会发生这种情况的人:
发布于 2016-11-04 14:13:26
请确保导出存档文件以创建.IPA文件时的选项。使用“保存以供即席部署”或“保存以供企业部署”。当我使用选项“保存以供iOS应用商店部署”创建.IPA文件并尝试通过网站安装应用程序时,遇到相同的错误“无法下载应用程序此时无法下载”。

发布于 2016-05-27 18:01:12
在我的例子中,问题是当系统提示时,我没有确认iCloud密码。因此,请确保确认iCloud密码并重新启动设备,然后重试。希望它能帮助到一些人。
https://stackoverflow.com/questions/37465518
复制相似问题