私はOTAを介して配布しているエンタープライズアプリケーションを持っています。私はそれをインストールしようとすると、私はXcodeのデバイスログからこのエラーを取得する:ダウンロードできません 'AppName'は現時点でダウンロードできませんでした
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>
すべてのヘルプは大幅に
を理解されるであろう
アドホック配信用にアーカイブしましたか? – LoVo
私はエンタープライズ配信用に作った – Andrew