cpp_learner
cpp_learner

Reputation: 382

iOS iPad Mini / iPhone: "Unable to Install <appname> Please try again later

I have an .ipa file, which is the output of the deployment of my application using distribution profile.

When I try to install in any new ios device say IPad Mini(using Itunes), installation is happening till 75% after it's showing

Unable to Install APP_NAME Please try again later.

Note: Same .ipa file used to work 4 months back, but now it's not installing. I understand that certificates and profiles are required only for ipa deployment but installation can be done on any iOS device without much prerequisites.

Did I miss anything here or something missing like certificates/profiles in my iPad Mini?

Upvotes: 10

Views: 11667

Answers (2)

exciton
exciton

Reputation: 59

Just ran into this same issue. This is how I solved it:

1) Make sure you register the UDID of your device in your Apple Developer page. This is done automatically when you build to that device with automatic signing enabled, but you could always enter the info manually.

2) In Xcode, when you export your archived project, make sure you choose "Ad Hoc" as method of distribution.

3) Choose your selected device under "App Thinning". On this same screen, I unselected "Rebuild from Bitcode" because with it the build was taking forever to finish.

4) Once you generate the .ipa file, just drag and drop and it should install properly.

:)

Upvotes: 0

cpp_learner
cpp_learner

Reputation: 382

I used in-house distribution certificate which identifies team/organization within a distribution provisioning profile. when we use expired certificates, it will generate .ipa file but it won't install on IOS device.(This is the reason for my issue)

UDID of IOS device need to be added only in case of using adhoc distribution certificates to restrict the use of ipa in other devices.

Upvotes: 1

Related Questions