应用程序未通过协同设计验证烦人的错误!
我看过很多关于此的帖子,但没有任何帮助。这是应用程序加载器和 xcode 中的错误:
应用程序失败的协同设计验证。签名无效,或者不是用Apple提交证书签名的。 (-19011)
I have looked at so many posts about this but nothing helps. It is the error in application loader and in xcode:
Application failed codesign verification. The signature was invalid, or it was not signed with an Apple submission certificate. (-19011)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
-19011 代码验证错误的可能原因有很多(如 关于它的数十个几乎相同的 stackoverflow 问题)。消息的详细信息中暗示了具体原因(请参阅 Apple 技术说明 TN2250 关于 -19011 问题的建议 了解详细信息)
在我的情况下,错误详细信息包含短语“无法加载配置文件:”,之后我发现应用程序或 xcode 方案名称中包含空格或特殊字符可能会导致协同设计验证失败。
There are many possible causes of the -19011 code verification error (as evidenced by the dozens of near identical stackoverflow questions about it). The specific cause is hinted at in the detail of the message (see Apple Technical note TN2250 advice on the -19011 issue for details)
In my case the error detail contained the phrase "Failed to load provision profile from:" after which I discovered that having spaces or special characters in the app OR the xcode scheme name can cause codesign verification fail.