我有一个通过 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>
任何帮助将不胜感激