Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to Download 'AppName' could not be downloaded at this time

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:

Device Error Message

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

like image 945
Andrew Avatar asked May 26 '16 15:05

Andrew


People also ask

Why does my Iphone say this app Cannot be installed?

Restart your device, then Settings>iTunes & App Store>Sign in and then try again. Tap Settings > Wi-Fi and turn Wi-Fi off and then on again. Reset Network Settings by tapping Settings > General > Reset > Reset Network Settings, and then your iOS device will restart.

What does this app could not be installed mean?

App Permissions. The Android app not installed error can be combated after resetting app permissions. Go to Settings > Apps > Reset App Preferences/Reset Application Permissions. After this, third-party software can be installed on your device.


2 Answers

For anyone trying to get more information on why this happened:

  • connect your iDevice to your Mac
  • "Trust" your Mac on your iDevice
  • Open console.app on your Mac
  • On the left, select your iDevice under "Devices".
  • To clear the noise, on the top-right search for: "process:appstored" without the quotes.
like image 131
Tiago Avatar answered Sep 18 '22 14:09

Tiago


Please make sure of options while exporting archive to create .IPA file. Use either "Save for Ad Hoc Deployment" or "Save for Enterprise Deployment". I faced same error "Unable to Download App could not be downloaded at this time" when I used option "Save for iOS App Store Deployment" to create .IPA file and tried to install the app through a website.

enter image description here

like image 34
Anvesh Tokala Avatar answered Sep 18 '22 14:09

Anvesh Tokala