钥匙串问题
我正在应用程序商店上传应用程序,当我在 Applicationloader 中上传构建时,我遇到如下错误。请给我解决这个问题的详细信息。 错误 - “应用程序未通过协同设计验证。签名无效,或者未使用 Apple 提交证书进行签名。”
i am uploading a application on appstore,when i upload the build in Applicationloader, i face an error given as below. please give me the detail to solve this problem.
ERROR --
"Application failed codesign verification. The signature was invalid, or it was not signed with an Apple submission certificate."
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
那么...您是在问该错误消息意味着什么吗?这意味着您需要一个由 Apple 签署的有效分发证书,您可以使用它来签署您的二进制文件。您可以通过登录 iOS 开发中心并使用 iOS 配置门户创建证书来获取该证书。
So... are you asking what that error message means? It means you need a valid distribution certificate signed by Apple that you can use to sign your binary. You can get that by logging into the iOS Dev Center and using the iOS Provisioning Portal to create the certificate.
转至 iOS 配置门户、配置菜单、分发选项卡,并确保在“应用商店”选项处于活动状态的情况下创建和使用证书。
用于上传到应用程序商店的证书与用于临时分发的证书不同。
然后,在 xcode 上安装分发配置文件,并确保使用该证书编译构建。
希望这有帮助。
Go to the iOS Provisioning Portal, provisioning menu, distribution tab and be sure that you create and use the certificate with the 'app store' option active.
The certificate for uploading to the app store is different to the certificate you use for add-hoc distribution.
Then, install the distribution provisioning profile on xcode, and be sure that you compile your build with that certificate.
Hope this helps.