我已经将我的iPhone操作系统升级为iOS 9.0。在此之后,我无法通过IPA文件从diawi安装应用程序。我可以从iTunes安装它。
除了iTunes之外,还有其他解决方案或替代方案吗?
P.S. iPhone配置实用程序也在我的Mac上崩溃。
发布于 2015-09-19 06:33:05
iOS 9对清单信息变得更加严格:标记、值或其他信息。
我遇到了另一个problem.But,我想也许会给你一些有用的信息。
要找出原因,最重要的一步是检查设备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.***.*********要解决这个问题,最重要的是检查设备日志。
https://stackoverflow.com/questions/32658628
复制相似问题