Xcode stuck at “Your application is being uploaded

2020-01-24 10:44发布

I am facing an issue while submitting my app from Xcode to the App Store. I have done everything regarding my project, and its running fine on my iPhone and iPad. But when I submit my project I am facing a huge problem.

First after archive I have done the validate. Now my archive file in Organizer is showing status pass validation as well. So I believe I am at the final step of submitting the app.

  1. I have clicked on distribute and selected submit app to app store.

  2. After login I have selected provisioning files as well.

  3. I am stuck here. You can see in the screenshot below. And I have never seen any
    progress bar where I can see the submission progress or something like that.

Only screen I can see is:

enter image description here

Edited:

It was near about 1.30 hours. And internet connection is working. My ipa file is only 3.5 MB.

And last when I tried Application loader to upload the same I received the following screen as well for a long time in Authenticating with the iTunes Store... ..

enter image description here

What should I do now?

21条回答
混吃等死
2楼-- · 2020-01-24 10:49

For me the issue was that I've changed my Dev. Account at some point of time and Application Loader itself was not authorized anymore. You have to manually to go it (Xcode -> Open Developer Tools -> Application Loader) and fill in your account details

查看更多
家丑人穷心不美
3楼-- · 2020-01-24 10:49

This worked for me:

  1. Logout from iTunes portal in all the browsers.

  2. Restart your Mac machine.

  3. Open Application Loader

  4. Click on your Apple Login in the Top Right corner of the Application Loader Window.

  5. Clicking Next will succeed your authentication process.

  6. Now, do your process as usual by clicking upon the "Deliver Your App" and following the procedure beyond that.

查看更多
男人必须洒脱
4楼-- · 2020-01-24 10:52

This is Happened Due to the iTMSTransporter
Try this, it fixed it for me. Open Terminal and run:
Use these commands one by one on the terminal. Hope it will help you

  1. cd ~
  2. mv .itmstransporter/ .old_itmstransporter/
  3. "/Applications/Xcode.app/Contents/Applications/Application Loader.app/Contents/itms/bin/iTMSTransporter"

iTMSTransporter will then update itself, then you can try uploading in XCode again.

查看更多
混吃等死
5楼-- · 2020-01-24 10:55

My problem was I forgot to change the Bundle Identifier in info settings for the target. Hope it help someone.

查看更多
欢心
6楼-- · 2020-01-24 10:56

try this on terminal

cd ~  
mv .itmstransporter/ .old_itmstransporter/  
"/Applications/Xcode.app/Contents/Applications/Application Loader.app/Contents/itms/bin/iTMSTransporter"

worked for me after hours of researching

查看更多
爱情/是我丢掉的垃圾
7楼-- · 2020-01-24 10:58

I got this issue today. But finally I found it's caused by my wrong settings.

In 'Build settings' of the target, change settings "Code Signing Identity -> Release" to your production certificate, and "Provisioning Profile -> Release" to your distribution provisioning file.

Then archive and distribute it again.

查看更多
登录 后发表回答