首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >iOS企业构建在<iOS 9上工作,但在iOS9上不工作

iOS企业构建在<iOS 9上工作,但在iOS9上不工作
EN

Stack Overflow用户
提问于 2015-09-18 18:45:22
回答 1查看 320关注 0票数 3

问题很简单。我用企业证书归档了一个*.ipa。我把它放在服务器上,它在iOS8上工作,但在iOS9上不工作。它只是说它不能安装。我用XCode7建造了它。

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2015-09-19 06:22:06

正如Michal Ciurus所说:

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

我遇到了类似的problem.But,我想也许会给你一些有用的信息。

要找出原因,最重要的一步是检查设备log.It将向您显示安装错误信息。

代码语言:javascript
复制
I find the problem is that I mistake the bundle-identifier value.

我发现如果您弄错了包标识符值,iOS 9将不允许您安装应用程序,但是iOS 8或更低版本不会检查包标识符值。

来自我的iOS 9设备的安装错误信息:

代码语言:javascript
复制
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 ):

代码语言:javascript
复制
20:40:09 ifeegoo itunesstored →  <Warning>: BundleValidator: Failed bundleIdentifier: com.***.**** does not match expected bundleIdentifier: com.***.*********

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

票数 2
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/32659007

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档