iPhone app could not be installed at this time

IphoneTestflight

Iphone Problem Overview


i was trying to install my iphone application from testflight. it installs perfectly on few devices but in some after installing about 80 percent it gives an error "Unable to download aaplication, could not be installed at this time" i am able to find out the reason for , why is it so? This is the screenshot:

could not be installed at this time

is there anybody who will help me regarding this issue? Thanks in advance.

Iphone Solutions


Solution 1 - Iphone

clear your cache and cookies in Safari, make sure your device is in provisioning profile and provisioning profile is installed on the device.

If everything mentioned above didn't help, try to create a new build with higher build number and try to distribute your app again

Solution 2 - Iphone

Most common issues that cause this are (from testflight's website):

  • Device storage is full
  • The provisioning profile is a developer provisioning profile
  • The ad hoc distribution provisioning profile is corrupted and the device is having an issue with it.
  • The device was restored from a backup and is causing a conflict for over-the-air distribution
  • There was a network timeout
  • Architecture settings of the build and the device are incompatible ( can sometimes happen -when "Build Active Architecture Only" is on when building).
  • Not Using Mobile Safari.

for me it turned out that my client's ipad was running iOS 4.2.2 and my project supports 5.0+.

Solution 3 - Iphone

Recently default Xcode project settings set ONLY_ACTIVE_ARCH (Build Active Architecture Only) to yes for Debug configuration.
So your build can not be installed on different hardware than the one you use for development.
Change this setting and installation should go fine.
enter image description here

Solution 4 - Iphone

As for Xcode 5.1, the problem was in arm64 architecture in VALID_ARCHS. Building the release configuration for 5.0 device locally gives the following error:

>Xcode cannot install or launch applications supporting the 64-bit architecture on devices running iOS versions prior to 6.0. This configuration is supported for distribution through the iOS App Store, but cannot be used during development with Xcode. To continue, edit the Run scheme action and select a build configuration that does not include the 64-bit architecture.

Removing arm64 from VALID_ARCHS solves the issue. In my case I had to create a separate branch for testing on iOS 5 devices.

Solution 5 - Iphone

You can try to publish the application by changing the version of the build. I was also having the same problem and tried the same by just changing tIt may help you too.

Solution 6 - Iphone

For me Setting Build Active Architecture to NO... works and installed successfully

Solution 7 - Iphone

Watch the console through the Xcode Organiser for the device that is failing to install.

You'll get a helpful message from the system telling you what is wrong. There are lots of potential failure reasons, so unless you check the message, you're just guessing...

Solution 8 - Iphone

Here is what worked for me:

  1. Clear the Cache and Cookies (Settings > Safari).
  2. Remove existing profile (if any) linked to "Test Flight App" (Settings > General > Profiles).
  3. Open Safari and go to https://testflightapp.com/. Login and follow the steps to start over.

P.S. I used to have a Test Flight App, but it looks like it crashed and the icon turned to be all white. Restarting my iPhone made it reappear correctly.

Solution 9 - Iphone

I was also having this problem, with an Ad-Hoc iPad application, when trying to install it on a iOS 6 device.

What fixed it for me was to click on the project in XCode, and change the "iOS Deployment Target" setting from 5.1 to 6.0.

And there was silly me thinking that iOS 5.1 apps would run on a iOS 6.0 device.

Solution 10 - Iphone

I just saw this as a result of a network error / time-out on a flaky network. I could see the progress bar increasing after I got the bright idea of just retrying. Also saw HTTP Range requests on the download server with ever increasing offsets of a few megabytes (the entire app was about 44MB).

Solution 11 - Iphone

I had this problem but I fixed this by making sure my Code Signing Identity is the SAME as the one I used in test flight.

After that, everything works fine

Solution 12 - Iphone

This can also happen if you disable cellular data for "App Store" (for example, while on vacation) and forget to turn it back on. The solution here is to simply re-enable it in Settings -> Cellular.

Solution 13 - Iphone

in my case app want to use iCloud services, but in distr. provision profile wasn't set iCloud enabled. turn it on and refresh profile.

Solution 14 - Iphone

I have had the same issue after fiddling around with certificates (argh).

The problem became apparent as I followed the comment of @Duraiamuthan.H, I installed on a device. The device reported 0xe8008016 (Entitlements) see SO here

The initial reason was, that the testflight target used the App store distribution certificate, not the Team certificate. I fixed that and the application was installing on the device over Xcode and then it also worked with testflight.

Solution 15 - Iphone

I had similar issue. However, I was able to fix it when I updated my iPad timings to that of current. I just checked the device log and found that the time in the log was shown 2 years before.

Hope updating the device timing to the current time will fix the issue.

Solution 16 - Iphone

Missing icon could be a problem. My manifest file points to a non-existing image and it fails the installation process. Placing an icon at the corresponding path solved the issue for me.

Solution 17 - Iphone

I ended up creating new Provisioning profiles, not sure if it was because of:

"The ad hoc distribution provisioning profile is corrupted and the device is having an issue with it."

Solution 18 - Iphone

I had the same problem as @mohitum007. In my case the developer of this App included an expiry date in it.

As workaround I set the date backwards to a past date (e.g. last month). Then I could install it and use it.

Also when I set the date back to normal, the already installed App didn't start up anymore. I contacted the company of this App to send me an updated version.

Sidenote: I found out that users from other Apps had the same problem but reversed: it won't install or start before a certain date.

Solution 19 - Iphone

For me, just uninstall the Testflight and restart my iphone. After that, install TestFlight, it works fine !

Solution 20 - Iphone

Check if the deployment target in the General section of the project settings, is greater than that of your device's iOS version.

If yes then you need to update the version of your device to at least the deployment target version. in order for you to be able to install the application on your device.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionmohitumView Question on Stackoverflow
Solution 1 - IphoneOlegView Answer on Stackoverflow
Solution 2 - IphonecapikawView Answer on Stackoverflow
Solution 3 - IphonegsempeView Answer on Stackoverflow
Solution 4 - IphonexardasView Answer on Stackoverflow
Solution 5 - Iphoneuser2077846View Answer on Stackoverflow
Solution 6 - IphoneRupeshView Answer on Stackoverflow
Solution 7 - IphoneConfused VorlonView Answer on Stackoverflow
Solution 8 - IphoneMaximeView Answer on Stackoverflow
Solution 9 - IphoneMike GledhillView Answer on Stackoverflow
Solution 10 - IphoneSteven KramerView Answer on Stackoverflow
Solution 11 - IphoneAdetiloye Philip KehindeView Answer on Stackoverflow
Solution 12 - Iphonepatr1ckView Answer on Stackoverflow
Solution 13 - IphoneEvgeniy SView Answer on Stackoverflow
Solution 14 - IphonethstView Answer on Stackoverflow
Solution 15 - IphoneMaheshView Answer on Stackoverflow
Solution 16 - IphoneberylliumView Answer on Stackoverflow
Solution 17 - IphoneDavid van DugterenView Answer on Stackoverflow
Solution 18 - IphoneRainerView Answer on Stackoverflow
Solution 19 - IphoneMr FoxView Answer on Stackoverflow
Solution 20 - IphoneStackUserView Answer on Stackoverflow