2015-09-18 158 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.***.********* 

最重要解决这个问题是检查设备日志。

相关问题