4

我已将我的 iPhone 操作系统升级到 iOS 9.0。之后,我无法通过 diawi 的 IPA 文件安装该应用程序。我可以从 iTunes 安装它。

除了 iTunes 之外,还有其他解决方案或替代方案吗?

PS iPhone 配置实用程序也在我的 Mac 上崩溃。

4

1 回答 1

1

iOS 9 对清单信息变得更加严格:标签、值或其他内容。

我遇到了另一个问题。但我想也许会给你一些有用的信息。

找出原因的方法,最重要的一步是检查您的设备日志。它会显示安装错误信息。

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

我发现如果你弄错了 bundle-identifier 值,iOS 9 将不允许你安装应用程序,但 iOS 8 或更低版本将不会检查 bundle-identifier 值。

我的 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.***.*********

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

于 2015-09-19T06:33:05.213 回答