iPhone应用程序分发构建警告:此捆绑包无效
当我在 Xcode 中构建应用程序时,我收到以下警告,该警告禁止我将应用程序上传到 App Store:
该捆绑包无效。应用程序标识符权利不是 格式正确;它应该包含您的 10 个字符的应用程序 ID 种子, 后跟一个点,然后是您的包标识符: com.companyname.appname (-19053)
我尝试将捆绑包标识符更改为“85B9GK2627.com.companyname.appname”。但我也收到同样的警告。有人知道如何解决这个问题吗?
When i build my app in Xcode I got the warning below which prohibits me from uploading my app to the App Store:
This bundle is invalid. The application-identifier entitlement is not
formatted correctly; it should contain your 10-character App ID Seed,
followed by a dot, followed by your bundle identifier:
com.companyname.appname (-19053)
I have tried to change bundle indentifier to "85B9GK2627.com.companyname.appname". But I get the same warnings. Does anybody know how to resolve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当 XCode 说将其更改为“XXXXX.com.companyname.appname”时,这意味着您实际上应该使用在 iTunesConnect 上创建应用程序时提供的值。 “.com.companyname.appname”只是一个示例。
When XCode says to change it to "XXXXX.com.companyname.appname" it means you should actually use the values you supplied when creating the app on iTunesConnect. ".com.companyname.appname" is just an example.
从门户中复制您在分发配置文件中使用的捆绑包标识符,并将其添加到 info.plist。然后执行清理和构建。
Copy the bundle identifier from portal which you have used in your distribution provisioning profile and add that to info.plist. Then perform clean and build.