2015-09-18 196 views

回答

1

iOS 9對清單信息變得更加嚴格:標記, 值或其他。

我遇到了另一個問題,但我想也許會給你一些有用的信息。

找出原因,最重要的步驟是檢查設備log.It會告訴你的安裝錯誤信息的方式。

I find the problem is that I mistake the bundle-identifier value. 

,如果你錯了包,標識值我發現,iOS的9不允許你安裝應用程序,但iOS的8或更低版本將不檢查包標識符值。

從我的iOS安裝錯誤信息9設備:

20:40:09 ifeegoo itunesstored → <Warning>: [Download]: Download task did finish: 8 for download: 2325728577585828282 
20:40:09 ifeegoo itunesstored → <Warning>: [ApplicationWorkspace] Installing download: 2325728577585828282 with step(s): Install 
20:40:09 ifeegoo itunesstored → <Warning>: [ApplicationWorkspace]: Installing software package with bundleID: com.***.***: bundleVersion: 1.01 path: /var/mobile/Media/Downloads/2325728577585828282/-1925357977307433048 
20:40:09 ifeegoo itunesstored → <Warning>: BundleValidator: Failed bundleIdentifier: com.***.**** does not match expected bundleIdentifier: com.***.********* 
20:40:09 ifeegoo itunesstored → <Warning>: [ApplicationWorkspace]: Bundle validated for bundleIdentifier: com.****.******success: 0 
20:40:09 ifeegoo itunesstored → <Warning>: LaunchServices: Uninstalling placeholder for app <LSApplicationProxy: 0x12677be70> com.****.*******(Placeholder) <file:///private/var/mobile/Containers/Bundle/Application/B62D8EA3-2052-4393-8A7E-3FD27228BFC2/2325728577585828282.app> 
20:40:09 ifeegoo itunesstored → <Warning>: LaunchServices: Uninstalling app <LSApplicationProxy: 0x12677be70> com.****.*****(Placeholder) <file:///private/var/mobile/Containers/Bundle/Application/B62D8EA3-2052-4393-8A7E-3FD27228BFC2/2325728577585828282.app> 

注重日誌(我躲的,因爲隱私的包ID):

20:40:09 ifeegoo itunesstored → <Warning>: BundleValidator: Failed bundleIdentifier: com.***.**** does not match expected bundleIdentifier: com.***.********* 

最重要解決這個問題是檢查設備日誌。

相關問題