Xcode Stuck at "Your Application Is Being Uploaded"

Xcode stuck at “Your application is being uploaded”

As I felt a serious issue on this. I believe this answer might be helpful.

After trying for around 10 to 12 hours to fix this issue and as everything else regarding my project and coding was fine enough, it became a headache for me. But after getting some valuable comments from some of the expert users of stack-overflow and after doing some more search on the internet, I have found some quality answers.

This answer helped me the most:

application loader stuck at the stage of "Authenticating with the iTunes Store"

If you are going to upload it through Application Loader and it gets stuck on "Authentication with the iTunes Store..."

or

You are going to upload it through XCode and it stucks on “Your application is being uploaded”

Then just keep your head cool and check this first method:

  • Check if your firewall protection is off. If not then turn it off. It maybe blocking you to connect your computer with iTunes
    Store.

  • Try a different internet connection. The purpose for trying a different internet connection is that your current internet connection maybe blocking a required port for connection to Apple servers.

If the above steps doesn't help you then follow this second method:

Xcode needs java runtime for uploading your apps to the App Store.

enter 'java -version' in the terminal, java version should be 1.6 .If not then download
latest compatible java only from apple download center:

http://support.apple.com/kb/DL1572?viewlocale=en_US

If this still doesn't help then follow this third method:

This method enables the application loader to use the HTTP port instead of HTTPS.

  • Go to
    Application Loader java folder :
    /Applications/Xcode.app/Contents/Applications/Application Loader.app/Contents/MacOS/itms/java/lib

  • Open net.properties file using any text editor application like text mate or sublime text

  • Change this particular line : #https.proxyPort=443 proxy port to
    https.proxyPort=80

  • Save the file. And that's it !! You can easily upload your binary file to App
    store now.

If the above methods still doesn't help then follow this fourth method: Regenerate your certificate

  • Goto iOS developer portal (https://developer.apple.com/membercenter).

  • Revoke current certificate which is used by your App for signing.

  • Remove current "iOS distribution provision profile" from Developer
    portal.

  • Regenerate the iOS distribution certificate and add them in developer portal.

  • Regenerate "iOS distribution provision profile" for app store
    distribution and download to mac.

  • Install it.

  • Try again using xcode/application loader to upload the build.

Xcode stuck in Uploading package to the App Store stage while uploading

I faced the same problem, and first what I tried was to check my traffic. So I found a process called java (ironic).

The process has since been renamed to com.apple.dt.Xcode.ITunesSoftwareService

Activity monitor

If you will check info about this process there will be tab Open Files and Ports and there in the bottom of the log window, you will see %YourApp%.ipa. And in general if Sent Packets & Sent Bytes increasing that's mean uploading is not stuck it's just can be one of many issues such as:

  • Bad connection
  • Slow upload speed
  • Accepting capacity of Apple servers
  • Highload network
  • etc.

To open Activity Monitor: Open Spotlight(cmd+space or ctrl+space) -> Type Activity Monitor -> open tab Network

Summary: Don't worry, and take your time :)

P.S. For increasing speed of upload you can not include bitcode.

P.S.S. Try also to use the Transporter app, sometimes it helps to speed up uploading. (https://apps.apple.com/in/app/transporter/id1450874784?mt=12)

Xcode 12 stuck at Authenticating with App Store (There is no Application Loader anymore)

I was stuck for 2 days finally I found answer here. But I need to translate it. Here are the steps I did:

  1. Download Transporter app from App Store
  2. Open Terminal and execute
    Users/{YOUR_USER_NAME}/Applications/Transporter.app/Contents/itms/bin/iTMSTransporter

Note: I'm not sure if step 2 is actually necessary since I have downloaded Transporter app but anyway I did it and it seems to download more files.


  1. Open Xcode again and do the steps just like when you are going to publish an app, but this time choose Export instead of Upload: Archive => Distribute App => Export => follow the instructions until the end noting the location where you saved the exported file. This produces .ipa file.
  2. Open Transporter app, then Sign In using your developer account.
  3. Click "Add App" and choose the exported file.

Then follow the process until finish.

It works for me. Hope this helps someone. And please upvote the question and the answer if this has helped you.

Thanks

Stuck on authenticating when uploading to App Store

I solved this problem by erasing the private data using the builtin tool (Window -> Projects) and then deleting XCode itself and reinstalling.



Related Topics



Leave a reply



Submit