与 iTunes Store 对话时发生错误
当尝试验证我的应用程序或将其提交到 iTunes 应用程序商店时,我在 XCode 中收到以下错误:“与 iTunes Store 对话时发生错误。”当我尝试直接通过应用程序加载器提交应用程序时,也会发生同样的情况。
我更新到 XCode 4.2.1 并重新安装 XCode 但问题仍然存在。几个月前,我向应用商店提交了一个应用程序。关于如何解决问题有什么建议吗?
谢谢!
I get the following error in XCode when trying to validate or submit my app to the iTunes app store: "An error occurred talking to the iTunes Store." The same thing occurs when I try to submit my app directly through the application loader.
I updated to XCode 4.2.1 and reinstalled XCode but the problem still persists. I submitted an app to the app store a few months ago. Any advice on how to fix the problem?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于您收到的问题,很难确定根本原因是什么。您是否还有比您提供的更多的背景信息?
只是一个理论,但您的问题可能是您的目标是 4.0,这需要 armv6 架构支持。如果基础 SDK 是 iOS 5.0,您将使用 armv7 架构,4.3 之前的版本不支持该架构。然后,您的选择是要么需要 4.3+,要么配置您的项目以支持这两种架构。这是可能的,但我之前没有 4.3 的要求,所以我只需要 4.3+。这个问题可能会有所帮助。
With the issue you're receiving, it's hard to determine what the root cause is. Do you have any more context than what you've provided?
Just a theory, but your issue could be that you're targeting 4.0, which requires armv6 architecture support. If the base SDK is iOS 5.0, you will be using armv7 architecture, which isn't supported for anything prior to 4.3. Your options would then be to either require 4.3+, or to configure your project to support both architectures. This is possible, but I did not have a requirement for 4.3 prior, so I just required 4.3+. This question from SO may help.
事实证明,我的应用程序的标题导致了这个问题。标题包含外语字符,虽然这在 iTunes Connect 中没有造成问题,但它显然让 XCode 感到困惑。我只是删除了标题中的这些字符,通过 XCode 上传应用程序,然后在上传二进制文件后再次更改标题。
It turns out that the title of my app caused the problem. The title contained characters from a foreign language, and although this caused no problem in iTunes Connect, it apparently chocked XCode. I simply got rid of these characters in my title, uploaded the application through XCode, and then changed the title again once my binary was uploaded.