I have an enterprise app that I'm distributing via OTA. When I try to install it I get this error from Xcode Device Log :
LoadExternalDownloadManifestOperation: Canceling failed manifest
download for replace: [MyBundleID]
[MIClientConnection uninstallIdentifiers:withOptions:completion:]:
Uninstall requested by itunesstored (pid 2029) for identifier MyBundleID with options:
This is my manifest.plist file:
<?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>
Any help will be greatly appreciated
For anyone trying to get more information on why this happened: