Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Stuck on authenticating when uploading to App Store

Tags:

xcode

macos

I've seen a few other SO questions that are related to this; but I've been through all of the fixes with no joy.

My company had one Mac for use for the team. This worked absolutely fine. We really needed another so we have another. I exported the developer profile from the first Mac on to the second Mac. This seemed to work fine, we can test on local devices, etc. However, now we cannot upload on to the App Store from either Mac- they just get stuck on authentication with no error.

Things I've done:

  • Tried a different connection
  • Set the HTTPS proxy port to 80
  • Run the application loader and XCode at the same time
  • Regenerate our certificates and provisioning profiles
  • Set the build settings to various combinations of certificates and profiles
  • Turn it off and on again (more than once)
  • Update Java
  • Bump version and build numbers
  • Checked the licence agreement (no updates)
  • Deleted the XCode DerivedData caches

I can access the Apple developer sites just fine- developer.apple.com, the iTunes Connect stuff, all of that without trouble.

like image 797
Puppy Avatar asked Sep 24 '15 13:09

Puppy


3 Answers

Some answers on StackOverflow suggested that we wait for some more time and be patient, others stated that restarting OR reinstalling Xcode should do the trick, but none worked for me. However, updating iTMSTransporter (Apple's command-line tool) worked for me, and if none of the above worked for you, I believe this one should ...

Simply create a back-up for the existing installation / folders, This is important because during the (new) install your previous installations will be removed by Transporter:

cd ~
mv .itmstransporter/ .old_itmstransporter/

Now run the following command to update Transporter:

"/Applications/Xcode.app/Contents/Applications/Application Loader.app/Contents/itms/bin/iTMSTransporter"  

Hope this helps somebody.

like image 150
Umar A. Avatar answered Nov 07 '22 15:11

Umar A.


Had the same problem, after update to xCode 7.0.1. In my case, cleaning project DerivedData and reboot Mac OS fixed it.

like image 26
Squatch Avatar answered Nov 07 '22 13:11

Squatch


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

like image 35
Puppy Avatar answered Nov 07 '22 15:11

Puppy