Cannot load the application - "An error occurred while loading to itunes repository"

I am trying to upload my application to the store. This is not the first time, so I am familiar with the process.

I tried both with Organizer (preferred method) and with Application Loader, but both offer vague error messages.

I recently upgraded to Xcode 4, trying to fix it. My archive project checks everything and everything, but shortly after clicking submit, I get an error message:

An error occurred while loading itunes repository

But no other information. So I really don't know what could be wrong. I turned to Apple, but so far nothing.

What could be wrong?

EDIT:

I should probably mention that my project has 2 goals, but I have profiles for both, both for development and distribution, so I can not understand why this will be a problem. As far as I can tell, this is an unusual thing about the project. Not a word from Apple either ...

Thanks!

Michael

+7
source share
9 answers

You need to change the build configuration for your archive scheme for distribution or smth. like this.

To do this, go to Product> Edit Schema, and on the left side, Archive Schema.

Check if you added everything to your project as "Permissions" and add it to your configuration. Also check the base SDK and the code signing options for your configuration. If you have done this, this should really work.

0
source

For those of you who have this issue with Xcode 4.3.2 and Java SE 6 1.6, try the following:

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.

+9
source

A little late, I know, but for those who still have this problem. Look in the log file /var/log/system.log. In my case, the problem was that the iTMSTransporter script (used by the Organizer when downloading the file) used "awk" and I had to replace it with "/ usr / bin / awk".

Completely resolved my problem.

U.

+3
source

I had problems before where I had a quote in my password. It will always be unavailable.

0
source

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

Not quite sure how, but I completely removed xcode (from the terminal), reinstalled it, restarted my computer, and with some black magic, it just started to boot.

0
source

I have the same problem and the solution was supposed to upgrade to java 1.6

I see this when I look in the console log to understand why Application Loader is not working.

0
source

I restarted my computer and it worked. Very wear. Another thing I did was to send right after archiving, instead of having to check first.

0
source

In my case, the proxy configured in the network settings was the reason. Without a proxy, it worked.

0
source

I spent all morning trying to figure it out, so I thought I would post that fixed my problem with the application loader. I just downloaded the latest version of App Loader (2.5.1) from iTunes connect. The link is in the footer.

0
source

All Articles