Submit Application not possible

前端 未结 3 458
猫巷女王i
猫巷女王i 2021-01-03 00:35

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 wit

相关标签:
3条回答
  • 2021-01-03 00:40

    Oracle Java 1.7 broke the uploader AGAIN. Im using;

    OSX 10.7.4
    Xcode 4.4.1
    

    And getting the same error. I reported it as a bug on ADC and it was acknowledged as such. Two ways to fix:

    1. In light of recent security issues with 1.7 remove that jvm from your system (uninstall) and fall back to Apples latest 1.6.35 patch.
    2. If you require 1.7 then you can temporarily turn it off while you upload then re-enable (or not) :) by doing the following: Application > Utilities > Java Preferences and uncheck Oracle Ver of Java (1.7.0_04).
    0 讨论(0)
  • 2021-01-03 00:45

    The update Java for OS X 2012-002 (released today) fixed the problem.

    Before the update, the symlinks are missing:

    $ ls /System/Library/Frameworks/JavaVM.framework/Versions/
    1.6     1.6.0       A       Current     CurrentJDK
    

    after the update:

    $ ls /System/Library/Frameworks/JavaVM.framework/Versions/
    1.4     1.4.2       1.5     1.5.0       1.6     1.6.0       A       Current     CurrentJDK
    
    0 讨论(0)
  • 2021-01-03 01:02

    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.

    0 讨论(0)
提交回复
热议问题