Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Submit Application not possible

I tried very hard the last two days to submit an update of our App to Apple directly out of XCode. The archive is always verified, but the submit process is stopped then with an error-message in XCode Organiser

an error occoured uploading to the iTunes Store

I opened the Console Application on the specific Mac and there is an error telling me something about a wrong java-version:

05.04.12 11:29:52,557 Xcode:  Error:
Java 1.5, 1.6, or 1.7 is required. Currently, java is the default java version. Please     upgrade.
05.04.12 11:29:52,558 Xcode:  Out:
05.04.12 11:31:16,776 Xcode:  Error:
05.04.12 11:31:16,777 Xcode:  Out:

I couldn't believe this should be the problem, cause two days before, i could submit an app binary to the store on this Mac without a problem.

On terminal launching java -version outputs:

java version "1.6.0_31"
Java(TM) SE Runtime Environment (build 1.6.0_31-b04-413-11M3623)
Java HotSpot(TM) 64-Bit Server VM (build 20.6-b01-413, mixed mode)

I thing i remember that there's been an JAVA Update by Apple in the last days.

Does anybody have the same problem?

like image 593
MadMaxAPP Avatar asked Apr 05 '12 09:04

MadMaxAPP


People also ask

Why can't I submit my common app?

If you cannot submit your application, check to make sure you are applying for a current start term and decision plan. For example, if the Early Action deadline has passed, you cannot apply for Early Action.

How do you put an application not applicable?

If you're applying online and the form doesn't let you leave the space blank, type “N/A” or “NA.” If you have to leave questions blank on Schedule A, you should include a letter of explanation that says why it doesn't apply.

Can you edit job application after submitting?

Once you submit an application, it is saved in a document for Human Resources to review and cannot be edited. Some healthcare organizations will allow you to apply for a job more than once.


1 Answers

This is a known bug! After installation of the latest JAVA Update by Apple via Apple Software Updater, it is not possible to upload binarys to the Store. There is a workaround by entering the following commands in termin to create symlinks:

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

There is no need for a restart of Xcode after that or a restart of the whole Mac. Right after setting the symlinks you can upload binarys to the Store and also the Application Loader is working as supposed to.

like image 105
MadMaxAPP Avatar answered Sep 30 '22 13:09

MadMaxAPP