5

我曾多次为测试目的制作开发人员构建,并且一切正常。曾是!将我的 Xcode 更新到 4.5 版后,我无法通过 iTunes 安装我的开发人员版本。这种情况在我在配置文件中拥有的每台设备上都是一样的。

我所拥有的以及我与其他开发人员两次检​​查的内容以避免个人错误:1)开发人员证书 2)添加了正确设备的开发人员配置文件 3)正确的构建过程

在成功构建应用程序后,我和其他开发人员尝试通过 iTunnes (10.7) 安装它,但只出现同步失败的错误对话框。

非常重要的信息是,我可以在 xCode 4.2 中构建可运行的应用程序并通过 iTunnes 安装它,而无需使用相同的证书和配置文件

如果我通过 Xcode 运行应用程序,我可以直接在设备上运行它

检查了所有苹果的建议,我没问题:https ://developer.apple.com/library/ios/#technotes/tn2009/tn2242.html

检查了很多有类似问题的论坛,我已经做了很多步骤来尝试减少这个问题,从撤销所有证书开始,使用特定设备制作新的开发人员配置文件,清理 Xcode 中的 tmp 文件夹以及构建目录。我已经从 KeyChain 中删除了所有证书、密钥并导入了新的。删除设备上的所有配置文件并安装新配置文件。清理项目,更改构建架构“armv”,基础 SDK - 最新 iOS 6。

非常感谢您的回复!!!

这是设备日志文件的一部分(iPhone5 iOS 6.1)

Nov  7 23:31:04  lockdownd[29] <Notice>: 016ca000 __copy_itunes_value_block_invoke_0: com.apple.mobile.iTunes.store/PurchaseTypes -> (null)

Nov  7 23:31:09  installd[31] <Error>: 0x343000 handle_install: Install of "/var/mobile/Media/PublicStaging/denik4.ipa" requested by itunesstored

Nov  7 23:31:09  installd[31] <Error>: 0x343000 MobileInstallationInstall_Server: Installing app cz.newslab.denik
>
Nov  7 23:31:09  installd[31] <Error>: profile not valid: 0xe8008012
>
Nov  7 23:31:09  installd[31] <Error>: 0x343000 install_embedded_profile: Could not install embedded profile: 0xe8008012
>
Nov  7 23:31:09  installd[31] <Error>: Nov  7 23:31:09  SecTrustEvaluate  [leaf CriticalExtensions IssuerCommonName]
>
Nov  7 23:31:09  mobile_assertion_agent[94] <Notice>: service_one_connection: Connection closed for client iTunes.
>
Nov  7 23:31:10  installd[31] <Error>: entitlement 'keychain-access-groups' has value not permitted by a provisioning profile
>
Nov  7 23:31:10  installd[31] <Error>: entitlement 'aps-environment' has value not permitted by a provisioning profile
>
Nov  7 23:31:10  installd[31] <Error>: entitlement 'application-identifier' has value not permitted by a provisioning profile
>
Nov  7 23:31:10  installd[31] <Error>: 0x343000 verify_signer_identity: MISValidateSignatureAndCopyInfo failed for /var/tmp/install_staging.yDZPNm/foo_extracted/Payload/denik.app/denik: 0xe8008016
>
Nov  7 23:31:10  installd[31] <Error>: 0x343000 do_preflight_verification: Could not verify executable at /var/tmp/install_staging.yDZPNm/foo_extracted/Payload/denik.app
>
Nov  7 23:31:10  installd[31] <Error>: 0x343000 install_application: Could not preflight application install
>
Nov  7 23:31:10  itunesstored[66] <Error>: 0x1786000 MobileInstallationInstall: failed with -1
>
Nov  7 23:31:10  installd[31] <Error>: 0x343000 handle_install: API failed
4

1 回答 1

5

重要的一行是这一行:

已安装 [31]:配置文件无效:0xe8008012

我最近在我们的一个 IPA 中看到了这个错误。通过从 iOS 配置门户重新发布配置文件(只需进行简单的更改,撤消它,然后提交 - 这应该重新生成配置文件),更新 Xcode 代码签名身份以使用新配置文件,重新启动设备,解决了这个问题,然后再试一次。然后它似乎安装得很好。

我们无法找到问题的根本原因,但是一旦我们完成了这些步骤,我们就再也没有看到它了。

于 2012-12-06T10:07:47.257 回答