ios – Ad Hoc个人资料问题

前端之家收集整理的这篇文章主要介绍了ios – Ad Hoc个人资料问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个错误,有谁知道是什么问题?
我检查并且我在adHoc和主配置配置文件中都有权利密钥,但我不知道为什么会出现此错误
  1. DTFetchSymbols[512] <Notice>:
  2. /System/Library/Caches/com.apple.dyld/dyld_shared_cache_armv7s
  3. DTFetchSymbols[512] <Notice>: kCommand_ListFilesPlist
  4. syslog_relay[377] <Notice>: syslog_relay found the ASL prompt. Starting...
  5. profiled[84] <Notice>: (Note ) MC: Provisioning profiles changed
  6. mobile_installation_proxy[375] <Warning>: LaunchServices: Please include the
  7. kcfBundleIdentifierKey in the options dictionary when installing an app.
  8. mobile_installation_proxy[375] <Warning>: LaunchServices: installing app with unknown
  9. bundleID
  10. installd[384] <Notice>: 0x603000 -[MIClientConnection
  11. _doBackgroundInstallationForPath:withOptions:completion:]: Install of
  12. "/var/mobile/Media/PublicStaging/Test.ipa" type Customer requested by
  13. mobile_installation_proxy (pid 375)
  14. installd[384] <Notice>: 0x603000 -[MIInstaller performInstallationWithError:]:
  15. Installing <MIInstallableBundle ID=test.testTest.Test; Version=3,ShortVersion=3.1.2>
  16. misagent[378] <Error>: attempt to install invalid profile: 0xe8008012
  17. installd[384] <Error>: 0x603000 -[MIInstallableBundle
  18. _installEmbeddedProfileInBundle:]: Could not install embedded profile: 0xe8008012
  19. (Unsupported device)
  20. installd[384] <Error>: SecTrustEvaluate [leaf CriticalExtensions IssuerCommonName]
  21. installd[384] <Error>: entitlement 'beta-reports-active' has value not permitted by
  22. provisioning profile 'test TEST AdHoc 2015'
  23. installd[384] <Error>: 0x603000 -[MICodeSigningVerifier performValidationWithError:]:
  24. 186: Failed to verify code signature of <MIExecutableBundle : path = /private/var/mobile/Library/Caches/com.apple.mobile.installd.staging/temp.asUxKy/extracted/Payload/Test.app identifier = test.Test.testTest type = 4> : 0xe8008016 (Entitlements found that are not permitted by provisioning profile)
  25.  
  26. installd[384] <Error>: 0x603000 -[MIInstaller performInstallationWithError:]:
  27. Verification stage Failed
  28. mobile_installation_proxy[375] <Error>: 0x603000
  29. __MobileInstallationInstallForLaunchServices_block_invoke240: Returned error Error
  30. Domain=MIInstallerErrorDomain Code=13 "Failed to verify code signature of
  31. <MIExecutableBundle : path = /private/var/mobile/Library/Caches/com.apple.mobile.installd.staging/temp.asUxKy/extracted/Payload/Test.app identifier = test.Test.testTest type = 4> : 0xe8008016 (Entitlements found that are not permitted by provisioning profile)" UserInfo=0x17566950 {LibMISErrorNumber=-402620394,LegacyErrorString=ApplicationVerificationFailed,FunctionName=-[MICodeSigningVerifier performValidationWithError:],NSLocalizedDescription=Failed to verify code signature of <MIExecutableBundle : path =
  32. /private/var/mobile/Library/Caches/com.apple.mobile.installd.staging/temp.asUxKy/extracted/ Payload/Test.app identifier = test.Test.testTest type = 4> : 0xe8008016 (Entitlements found that are not permitted by provisioning profile),SourceFileLine=186}
  33. mobile_installation_proxy[375] <Warning>: ERROR: MobileInstallationInstallForLaunchServices returned nil
  34. mobile_installation_proxy[375] <Error>: 0x581000 handle_install: Installation Failed: Error Domain=LaunchServicesError Code=0 "The operation couldn’t be completed. (LaunchServicesError error 0.)" UserInfo=0x17566a30 {Error=ApplicationVerificationFailed,ErrorDetail=-402620394,ErrorDescription=Failed to verify code signature of <MIExecutableBundle : path = /private/var/mobile/Library/Caches/com.apple.mobile.installd.staging/temp.asUxKy/extracted/Payload/Test.app identifier = test.Test.testTest type = 4> : 0xe8008016 (Entitlements found that are not permitted by provisioning profile)}

提前致谢!

解决方法

对我来说,beta报告主动是问题: https://developer.apple.com/library/ios/qa/qa1830/_index.html

我有两个Xcode存档,我可以导出以进行临时分发. AFAIK它们基于相同的代码并以相同的方式创建(Xcode> Product> Archive).在导出向导期间,一个存档向我显示权限下的“beta-reports-active”,另一个存档没有.在尝试使用“beta-reports-active”权利安装ipas时,我收到与OP相同的错误消息.我确实重新创建了配置文件并重新安装了appstore分发配置文件,然后再次归档产生了没有“beta-reports-active”权利的存档,但我不确定这是否是原因.

猜你在找的iOS相关文章