Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

ios

maf

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?

like image 459
cpp_learner Avatar asked Feb 03 '18 07:02

cpp_learner


People also ask

Why IPA file is not installing on iPhone?

If you are using your company network while trying to download the . ipa file, make sure that the download is not blocked by the company's firewall. To check this, you can simply turn off the company WLAN and download the app via the mobile network (4G or 3G).

Why does my iPod say unable to install music?

Downloading issues can be related to several factors, including connection issues, or lack of space on your device. Basic tips from Apple include closing the app and restarting your iPhone or iPad. This should usually be your first step when having issues with your device.


1 Answers

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.

like image 68
cpp_learner Avatar answered Oct 19 '22 01:10

cpp_learner