IOS 8.1 Cannot Install OTA Enterprise Application - “Unable to Download Application”

I know that my question is similar to this issue of the iOS8 Enterprise app However, none of the answers helped me, and I did not explain the error log errors to anyone, which, I think, hold the key to solving the real problem, and then try to add another solution that can work.

What I have tried so far:

Here are the logs:

iPad-itunesstored[81] <Warning>: LaunchServices: installing placeholder for com.firmName. iPad installd[34] <Notice>: 0x1ad5000 -[MIClientConnection _doBackgroundInstallationForPath:withOptions:completion:]: Install of "/var/mobile/Library/Caches/com.apple.itunesstored/AppPlaceholders/5715016884658519113.app" type Placeholder requested by itunesstored (pid 81) 

PID 81 = Application Installation Request

PID 31 = pid81 asks for a placeholder to be set in the background using pid 31

 iPad installd[34] <Notice>: 0x1ad5000 -[MIInstaller performInstallationWithError:]: Installing <MIInstallableBundle ID=com.firmName.AppyName; Version=1.0, ShortVersion=(null)> 

Installation in progress ...

 iPad MobileStorageMounter[187] <Error>: 0x3cce29dc Device-O-Matic: iterate_ancestors IORegistryEntryGetParentIterator failed: No such process iPad MobileStorageMounter[187] <Error>: 0x3cce29dc Device-O-Matic: iterate_ancestors IORegistryEntryGetParentIterator failed: No such file or directory iPad MobileStorageMounter[187] <Error>: 0x3cce29dc Device-O-Matic: iterate_ancestors IORegistryEntryGetParentIterator failed: No such file or directory iPad MobileStorageMounter[187] <Error>: 0x3cce29dc Device-O-Matic: iterate_ancestors IORegistryEntryGetParentIterator failed: No such file or directory 

ERROR ERROR

The MobileStorageMounter error MobileStorageMounter , this is not a reason to store the ipad, there is a lot of space. PID 31 was killed, so there is no process, and it seems that the locator has been deleted, and why there is no such file or directory?

Here are the rest:

 iPad installd[34] <Notice>: 0x1ad5000 -[MIContainer makeContainerLiveReplacingContainer:withError:]: Made container live for com.firmName.AppyName at /private/var/mobile/Containers/Data/Application/FE556E7D-F0BF-4E83-8140-5A9BA7574E8A iPad installd[34] <Notice>: 0x1ad5000 -[MIContainer makeContainerLiveReplacingContainer:withError:]: Made container live for com.firmName.AppyName at /private/var/mobile/Containers/Bundle/Application/D3564BA0-3940-40EB-926F-F1A04D5FA5BF iPad installd[34] <Notice>: 0x1ad5000 -[MIInstaller performInstallationWithError:]: Staging: 0.04s; Waiting: 0.00s; Installation: 0.70s; Overall: 0.74s iPad itunesstored[81] <Warning>: LaunchServices: Creating installProgressForApplication:<LSApplicationProxy: 0x14d26cf0> com.firmName.AppyName (Placeholder) withPhase:3 iPad itunesstored[81] <Warning>: LaunchServices: installPhaseFinishedForProgress: com.firmName.AppyName.InstallingPlaceholder - <NSProgress: 0x14f94a40> : Parent: 0x0 / Fraction completed: 0.0000 / Completed: 0 of 100 called, removing progress from cache iPad kernel[0] <Notice>: flow_divert_token_set (0): Failed to get the key unit from the token: 22 iPad lockdownd[24] <Error>: Could not set socket option SO_OPPORTUNISTIC: Invalid argument iPad kernel[0] <Notice>: flow_divert_token_set (0): Failed to get the key unit from the token: 22 iPad lockdownd[24] <Error>: Could not set socket option SO_OPPORTUNISTIC: Invalid argument iPad filecoordinationd[138] <Warning>: sandboxing denied subscription to progress on category com.firmName.AppyName (bundle id (null), EF50B943-DC1D-493E-AAD3-DBAEA8F380D8) iPad filecoordinationd[138] <Warning>: sandboxing denied subscription to progress on category com.firmName.AppyName (bundle id com.apple.iaptransportd, AC37404E-9FF1-474E-A2A3-F92E3E3EE0ED) 

It seems that PID 81 has completed 0 of 100 and has been deleted. It seems like everyone failed to create a placeholder?

The application works great when created by Xcode 6.1.1 and connects to any device. In addition, he worked once through the Enterprise distribution, and then never again (I downloaded and installed it, after which it was impossible). The application is always in the "Waiting ..." state.

Any tips or ideas are welcome. I really have no idea or idea. Is there any other way to distribute OTA / Adhoc?

+6
source share
4 answers

I tried all combinations of answers and solutions for iOS 8.1. on both the iPad and iPod, without taking any further steps. The solution that works is using testFlight apples. I think the old way means not working, so developers are slowly switching to testFlight. I spent two working days, hope this helps you, and not waste time.

About testFlight: apple testFlight page

This simple tutorial led me: iOS8 tutorial testFlight

UPDATE 1 (05.24.2015):

Corporate distribution now works for me. My colleague twice updated SSL on the server. He updated several keys that were used for SSL authentication, as some certificates were changed and updated. The distribution also works on the following devices:

iPod (4th, 8.2), iPhone 5S (8.3), iPad 2 (8.3), iPad 4 (8.3).

However, it does not work and does not report errors (or error lines) in the Xcode-Window, the iPad 3 Console device. I successfully downloaded my application using the Xcode 6.2+ IDE (currently 6.3.1.). In all cases, not a single plist file was added by default, and I used the plist file here: Example plist file for Xcode 6

0
source

Addressing the same problems.

A possible workaround is to rename ipa and plist. Then it worked for me.

But I still do not understand why this is happening.

+1
source

I had the same problems. It worked on its own, without installing any “commands” or a special profile / code signing certificate. for the purpose of assembly in the Xcode project file.

Step by step

  • The command is set to "No" (in the "General" section)
  • iOS Developer / Distribution to Automatic under code signing (build settings)
  • Profile profiling set to No

then Product → Archive → Distribute → Save for Ad Hoc / Enterprise → Choose an enterprise prov. profile → save to disk → install / distribute

Found this site regarding code sign errors

0
source

I had the same "Unable to download application" problem when trying to download a corporate application on an iPad.

Something that worked for me turned off the iPad again and again.

I don’t know why it worked, but it happened. Hope this helps someone!

0
source

Source: https://habr.com/ru/post/978286/


All Articles