Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Crashlytics with iOS 9 Unable to Download App

I am getting the following error:

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

I am on iOS 9 Beta v5. Will I not be able to install any versions of my app from Crashlytics because I am using iOS 9?

like image 714
Michael Avatar asked Aug 10 '15 16:08

Michael


2 Answers

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.

like image 132
Hugo Sequeira Avatar answered Nov 07 '22 23:11

Hugo Sequeira


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

like image 24
hyouuu Avatar answered Nov 07 '22 23:11

hyouuu