Crashlytics with iOS 9 Unable to Download App

前端 未结 6 2121
傲寒
傲寒 2020-12-30 00:39

I am getting the following error:

Unable to Download: APP_NAME could not be installed at this time [Done/Retry options]

I am on

相关标签:
6条回答
  • 2020-12-30 00:54

    We distribute our app builds with Crashlytics Beta and hit the same problem today. Disabling the 'ios 8 download fix' checkbox fixed our problem.

    In the device error log I saw "Failed to install application"... "Error Domain=SSErrorDomain Code=143" when I tried to install our build from the Crashlytics app.

    https://twittercommunity.com/t/ios-8-download-fix/34326 states that the ios 8 download fix is

    using a different bundle identifier in the download manifest to trick the OS into downloading the payload

    0 讨论(0)
  • 2020-12-30 01:02

    In IOS9, display image URL is required in manifest.plist. It give this error because image is missing from URL. I added a image and it is working for me, but I have my personal server. Maybe diawi.com, hockeysdk, crashlytics should update their server.

    0 讨论(0)
  • 2020-12-30 01:05

    We started to have this problem after renewing our apple developer membership. I fixed by deleting the iOS Provisioning Profiles through the apple website and generated new ones. I've also resetted my XCode cached data:

    rm -rf "$(getconf DARWIN_USER_CACHE_DIR)/org.llvm.clang/ModuleCache"
    rm -rf ~/Library/Developer/Xcode/DerivedData
    rm -rf ~/Library/Caches/com.apple.dt.Xcode
    defaults delete com.apple.dt.Xcode
    

    I've also removed all cached provisioning profiles at /Users/<user>/Library/MobileDevice/Provisioning Profiles

    Then I opened XCode > View details > Download all to download the new profiles and distributed a new build. It worked from then onwards.

    0 讨论(0)
  • 2020-12-30 01:06

    The follow answers said that "display image URL is required in manifest.plist.",but right now my app is working without this under iOS 9.I have mistaken the bundle identifier.iOS 9 will check the value.

    iOS 9 became more strict with the manifest information:the tag,the value,or something else.

    0 讨论(0)
  • 2020-12-30 01:09

    Found this answer on Crashlytics' forum: https://twittercommunity.com/t/download-problem-detected/52772

    Basically you need to delete existing app from App Store before trying to install the beta build

    0 讨论(0)
  • 2020-12-30 01:15

    I also had that problem. I deleted and created again " provisioning profile" , but that problem was not resolved.

    I tried test option insert app store, but it failed and showed following problem "Found an unexpected Mach-O header code: 0x7263c21" .

    Following this link "Found an unexpected Mach-O header code: 1918975009 in xCode 6 " I received the answer to my question. I have double framework, I deleted it and the issue was resolved.

    0 讨论(0)
提交回复
热议问题