7

我有一个关于使用 iTunes 11 临时分发应用程序的奇怪问题。所有设置似乎都正常(配置文件、证书等)。我从 xcode 5 分发应用程序,使用临时证书对其进行签名并将其添加到 iTunes。我将应用程序从 iTunes 安装到我的设备(iPhone 5、IOS 7.0.2),一切正常,但完成后,应用程序在设备上保持深灰色/阴影(中间没有加载进度圈)。如果我点击该应用程序,它将永远显示“正在安装...”。

这个应用程序是从旧版本升级而来的,旧版本可以毫无问题地安装。主要的变化是从非弧到弧的转换以及用情节提要替换 xib。

Oct  2 16:41:04 Kiphone installd[62] <Notice>: 0x2c3000 handle_install_for_ls: Install of "/var/tmp/com.apple.atc.Apps/com……" requested by atc
Oct  2 16:41:04 Kiphone installd[62] <Notice>: 0x2c3000 MobileInstallationInstall_Server: Installing app com…..
Oct  2 16:41:04 Kiphone installd[62] <Notice>: 0x2c3000 install_application: Installing placeholder
Oct  2 16:41:05 Kiphone installd[62] <Notice>: 0x2c3000 MobileInstallationInstall_Server: Staging: 0.01s; Waiting: 0.00s; Installation: 0.21s; LS Sync: 0.00s; Overall: 0.21s
Oct  2 16:41:11 Kiphone installd[62] <Notice>: 0x241000 MobileInstallationInstall_Server: Installing app com……
B2-4725-AD8B-07C3CCDFB4A9. shouldCommit=1.
Oct  2 16:41:11 Kiphone installd[62] <Error>: profile not valid: 0xe8008012
Oct  2 16:41:11 Kiphone installd[62] <Error>: 0x241000 install_embedded_profile: Could not install embedded profile: 0xe8008012
Oct  2 16:41:14 Kiphone installd[62] <Error>: entitlement 'keychain-access-groups' has value not permitted by provisioning profile 'SSMobile AdHoc CC'
Oct  2 16:41:14 Kiphone installd[62] <Error>: entitlement 'keychain-access-groups' has value not permitted by provisioning profile 'iSS mobile adhoc'
Oct  2 16:41:14 Kiphone installd[62] <Error>: 0x241000 verify_signer_identity: MISValidateSignatureAndCopyInfo failed for /var/tmp/install_staging.DTmWby/foo_extracted/Payload/ssmD.app/ssmD: 0xe8008016
Oct  2 16:41:14 Kiphone installd[62] <Error>: 0x241000 do_preflight_verification: Could not verify executable at /var/tmp/install_staging.DTmWby/foo_extracted/Payload/ssmD.app
Oct  2 16:41:14 Kiphone installd[62] <Error>: 0x241000 install_application: Could not preflight application install
Oct  2 16:41:15 Kiphone installd[62] <Error>: 0x241000 handle_install_for_ls: API failed

谢谢!

4

1 回答 1

4

这通常是由于我发现的一些原因而发生的:
- 检查 100 次是否使用正确的身份和配置文件对构建进行签名
- 如果设备是新添加到门户和配置文件中,请确保您已下载新配置文件并将其添加到Xcode
- 尝试从设备中删除特定配置文件
- 尝试重新启动设备、计算机
- 检查设备日志,尤其是installd无效配置文件的行。
- 检查UDID设备在门户中是否正确(应用程序在 iOS7 上不再显示正确的 UDID)
- 在全新安装的 iOS 上,我不得不等待 5-10 分钟才能安装它,而且再也没有发生过。

希望这些建议之一有所帮助。

于 2013-10-02T13:28:58.163 回答