无法上传应用程序 - “上传到 itunes 商店时发生错误”

发布于 2024-10-22 00:46:34 字数 406 浏览 1 评论 0原文

我正在尝试将我的应用程序上传到商店。这不是第一次,所以我对这个过程很熟悉。

我已尝试通过管理器(首选方法)和应用程序加载器进行尝试,但两者都提供了模糊的错误消息。

我最近更新到 Xcode 4 试图修复它。我的存档项目验证一切正常,但在点击提交后不久,我收到一条错误消息:

上传到 itunes 商店时发生错误,

但没有其他信息。所以我真的不知道出了什么问题。我已经向苹果公司申诉过,但还没有结果。

可能出什么问题了?

编辑:

我可能应该提到我的项目有 2 个目标,但我有两个目标的配置文件,用于开发和分发,所以不明白为什么这会成为问题。据我所知,这是该项目唯一不寻常的事情。苹果仍然没有任何消息...

谢谢!

迈克尔

I'm trying to upload my app to the store. This isn't the first time so I'm familiar with the process.

I've tried both through the Organizer (preferred method) and the Application Loader, but both offer vague error messages.

I've recently updated to Xcode 4 in an attempt to fix it. My archived project validates fine and everything, but shortly after hitting submit, I get an error saying:

An error occurred uploading to the itunes store

But no other info. So I really don't know what could be wrong. I've appealed to Apple but nothing yet.

What could be wrong?

EDIT:

I should probably mention that my project has 2 targets, but I have provisioning profiles for both, both for development and distribution, so can't see why this would be a problem. It's the only unusual thing about the project as far as I can tell. Still no word from Apple either...

Thanks!

Michael

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(9

还如梦归 2024-10-29 00:46:34

对于那些在 Xcode 4.3.2 和 Java SE 6 1.6 中遇到此问题的人,请尝试以下操作:

cd /System/Library/Frameworks/JavaVM.framework/Versions
sudo ln -s CurrentJDK /System/Library/Frameworks/JavaVM.framework/Versions/1.5
sudo ln -s CurrentJDK /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0

它对我有用。

For those of you that are having this issue with Xcode 4.3.2 and Java SE 6 1.6, try this:

cd /System/Library/Frameworks/JavaVM.framework/Versions
sudo ln -s CurrentJDK /System/Library/Frameworks/JavaVM.framework/Versions/1.5
sudo ln -s CurrentJDK /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0

It worked for me.

烦人精 2024-10-29 00:46:34

我知道有点晚了 - 但对于仍然遇到此问题的人 - 请查看您的 /var/log/system.log 日志文件。就我而言,问题是 iTMSTransporter 脚本(组织者在上传文件时使用)使用“awk”,我必须将其替换为“/usr/bin/awk”。

彻底解决了我的问题。

Y。

A bit late, I know - but for anyone still having this problem - Look in your /var/log/system.log log file. In my case the problem was that the iTMSTransporter script (used by the Organizer when uploading the file) used 'awk', and I had to replace it with '/usr/bin/awk'.

Completely solved my problem.

Y.

山人契 2024-10-29 00:46:34

您需要将存档方案的构建配置更改为分发或其他。像这样。

为此,请转到“产品”>“编辑方案,在左侧您将找到存档方案。

检查您是否已将所有内容(例如权利)添加到项目中,以及是否已将其添加到配置中。另请检查基础 SDK 和配置的代码签名选项。如果你这样做了,它应该真的有效。

You need to change your Build Configuration for your Archive Scheme to Distribution or smth. like this.

For this, go to Product > Edit Scheme and on the left side you'll find the Archive-Scheme.

Check if you've added everything to your project like Entitlements, and wether you've added this to your configuration. Check also the Base SDK and the code signing options of your configuration. If you've done this, it should really work.

你列表最软的妹 2024-10-29 00:46:34

我之前遇到过麻烦,因为我的密码中包含引号 '。总是上传失败。

I've had trouble before where I had a quote ' in my password. It would always fail to upload.

趁微风不噪 2024-10-29 00:46:34

好吧,如果有人遇到类似的问题,我似乎已经解决了。

不完全确定如何,但我完全删除了 xcode(从终端),重新安装它,重新启动我的计算机,并且通过某种黑魔法,它刚刚开始上传。

Well, if anyone is having a similar problem, I seem to have fixed it.

Not entirely sure how, but I completely deleted xcode (from the terminal), reinstalled it, restarted my computer, and by some sort of black magic, it just started uploading.

爱,才寂寞 2024-10-29 00:46:34

我有同样的问题,解决方案是更新到 java 1.6

当我查看控制台日志以了解应用程序加载器不起作用的原因时,我看到了这一点。

I have the same problem and the solution was to update to java 1.6

I see this when I was looking in the console log to understand why Application Loader doesn't work.

脸赞 2024-10-29 00:46:34

我重新启动了计算机并且它工作了。非常磨损的问题。我做的另一件事是在归档后直接提交,而不是先验证。

I restarted my computer and it worked. Very wear problem. The other thing that I did, was to submit directly after archiving, instead of validiting first.

任谁 2024-10-29 00:46:34

就我而言,原因是在网络首选项中配置的代理。没有代理就可以了。

In my case the proxy configured in Network Preferences was the reason. Without proxy it worked.

地狱即天堂 2024-10-29 00:46:34

我花了整个早上试图解决这个问题,所以我想我应该发布解决我的应用程序加载器问题的方法。我刚刚从 iTunes connect 下载了最新的 App Loader (2.5.1)。链接位于页脚。

I spent all morning trying to figure this out, so I thought I'd post what fixed my issue with app loader. I just downloaded the latest App Loader (2.5.1) from iTunes connect. The link is in the footer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文