问题描述
当我在 Xcode 中使用 Organizer 验证我的项目时,出现以下错误
When I was validating my project with Organizer in Xcode, I got the following error
无效的代码签名权利.您的应用程序捆绑包的签名包含 iOS 不支持的代码签名权利.
Invalid code signing entitlements. Your application bundle's signature contains code signing entitlements that are not supported on iOS.
具体来说,不支持Payload/MyApp.app/MyApp
中键com.apple.developer.related-domains
的值*
.
Specifically, value *
for key com.apple.developer.associated-domains
in Payload/MyApp.app/MyApp
is not supported.
我无法从谷歌找到任何相关答案.希望有人可以帮助我?
I cannot find any relevant answer from google. Hope someone can help me?
推荐答案
我在 Xcode 5.1.1 中遇到了类似的问题,使用我在网上找到的任何解决方案都无法解决.但是,这对我有用:
I had a similar problem with Xcode 5.1.1, and couldn't solve it using any of the solutions I found online. However, this worked for me:
在证书、标识符和"下在开发者会员中心的个人资料"中,在左侧栏中的标识符"、应用 ID"下选择您的应用 ID.
Under 'Certificates, Identifiers & Profiles' in the Developer Member Center, choose your App ID under 'Identifiers', 'App IDs' in the left hand column.
选择编辑",然后禁用关联域".
Choose 'Edit' and then disable 'Associated Domains.'
这篇关于验证 iOS 应用程序时出现 com.apple.developer.related-domains 问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!