nevster
nevster

Reputation: 6465

Getting "Cannot verify client. (3000)" when trying to upload archive from Xcode to itunesConnect

Just updated to Xcode 7.1 and getting this error. Was able to upload fine using 7.0.1

Upvotes: 114

Views: 26321

Answers (20)

Igoretto
Igoretto

Reputation: 117

I had this problem for all night. Got 🍡 β˜•οΈπŸΊπŸΌ but didn't work.

Solved my problem only with:

  1. Switching lan to wifi connection
  2. Uploading App by Application Loader
  3. Wasn't useful but i saw than in Xcode uploading start works as well after connection switching, so maybe was a connection my problem.

Upvotes: 2

Diego Rebosio
Diego Rebosio

Reputation: 69

After trying a few things, this is what worked for me:

  • Just before uploading your executable, validate it, you then have a modal where you get to pick your binary. On the right, there's the name of the provisioning profile used. There's an arrow next to it.
  • Click on the arrow which opens the finder to the location of the provisioning profile.
  • Delete this file.
  • Restart XCode
  • Clean
  • Rebuild/Archive
  • Upload

Upvotes: 0

Deepak Thakur
Deepak Thakur

Reputation: 3701

  1. I remade the app with "App Store" provisioning profile. Earlier it was "Ad-hoc" provisioning profile.
  2. I submitted the app from "Application Loader" instead of traditional "Organizer".

Above two steps enabled me to submit the app to iTunes Connect for beta testing also. There is always an element for surprise whenever apple releases an updated XCode.

Upvotes: 0

afrodev
afrodev

Reputation: 1384

You can use Application Loader to upload your build and solve it!

Upvotes: 1

Daniel Bang
Daniel Bang

Reputation: 725

I tried most of the things here, but what finally did it for me was using the Application Loader instead of trying to upload my app from the Organizer.

Once I did it from the Application Loader I got an error message related to this: ITMS-90535 Unable to publish iOS app with latest Google Signin SDK, which was the real cause of the error.

Upvotes: 0

TheRustling
TheRustling

Reputation: 11

From the rest of the answers it seems that a lot of different things "resolve" this issue. Here are the particulars of what solved it for me:

  1. The iPad had to be plugged in.

  2. The iPad had to be signed in (i.e. not locked).

After I satisfied those two conditions, it validates and uploads reliably. If either one isn't done, I am not able to validate or upload to iTunesConnect and I get the Cannot verify client (3000) error.

Upvotes: 1

Svein Halvor Halvorsen
Svein Halvor Halvorsen

Reputation: 2494

Same problem here. Grabbing a cup of β˜•οΈ worked for me.

Upvotes: 10

Bcf Ant
Bcf Ant

Reputation: 1759

Experiencing the same problem. Tried a number of the suggestions above. Ended up using the Application Uploader instead.

Xcode > Open Developer Tools > Application Loader

Upvotes: 1

John Houston
John Houston

Reputation: 97

When it fails two times in a row, choosing "Validate" and after that "Upload to App Store" does the trick for me.

Upvotes: 0

jlapoutre
jlapoutre

Reputation: 1787

For what it's worth: I got this error when my startdisk was almost full (less than a few hundred MB left).

Cleaning up some space and re-submitting resolved this issue.

Upvotes: 1

adrianokw
adrianokw

Reputation: 389

I've been having this problem since Xcode 7.1 (for more than a month). I did everything I could trying to solve this: restart Xcode, clean project, clean build folder, build with a device connected, reinstall Xcode multiple times, even formatting the whole disk and starting from scratch. None of this worked.

During this time my colleague was always able to upload the very same builds to App Store without any problem.

Curiously, what solved this problem for me was disconnecting my non-Apple wireless mouse.

I found this out when I tried to submit an app from my home computer and got the same error. I disconnected the mouse dongle, tried again and it went through.

I've verified this three times both on my home (MacBook Pro 2013) and work computer (Mac Mini 2014).

This leads me to believe that during the app submission process Apple may check if your environment is purely made by Apple or not, and may block your submission based on that. This would explain the "Cannot verify client" message.

Upvotes: 1

Dinh Le
Dinh Le

Reputation: 11

Clean project not work with me in XCode 7.2. But I solve the problem by export Archive and using Application Loader.

Step:

  1. Archive you build.

  2. In Organizer: Chose your archive.

  3. Export "Save for iOS App Store Deployment".

  4. Open Application Loader (Xcode -> Open Developer Tool -> Application Loader: Download it if you don't have).

  5. Select "Deliver your App" -> Select your exported ipa.

  6. Upload.

=> Done

Upvotes: 1

thanhnguyen
thanhnguyen

Reputation: 1

  • Download Provisiononing Profiles of app on Apple Developer,
  • Quit and restart Xcode,
  • Run Provisiononing Profiles by Xcode,
  • Open app again,
  • In General -> get "fix" at Identity.

You can Archive and Upload to Apple Store

Upvotes: 0

n13
n13

Reputation: 6983

If you encounter this error, you have two options:

Option A - Engage in an activity that takes a minute or two. Could be any of the activities described in the other answers, like re-install XCode, renew certificates, do a new build from scratch after clearing caches. Or simply go get a coffee.

or

Option B - Do nothing at all for a little while.

Then, try again. If it doesn't work, repeat.

Upvotes: 61

J. Doe
J. Doe

Reputation: 91

Had the same issue and tried everything including Application Loader but still would not load into iTunes Connect. I'm running XCode 7.1.1 and OS X El Capitan.

I also have Avira (free version) installed and once I disable it, everything went through. Hope this helps someone.

Stackoverflow has been my savior and goto source for Obj C and now Swift!!

Upvotes: 2

Ross Knipe
Ross Knipe

Reputation: 519

Just updated to Xcode 7.1 and getting this error. Was able to upload fine using 7.0.1

same here - restart, clean build, archive and upload was successful.

Upvotes: 12

Farador
Farador

Reputation: 71

I first tried to upload and got the "cannot verify client"-error. Then i did a validate, which was successfull and then again a upload which also was successfull. No restart etc. needed.

Upvotes: 7

vinhkhoa
vinhkhoa

Reputation: 53

Same problem here. Clean build and deleting project caches worked.

Upvotes: 2

ams340
ams340

Reputation: 71

Exporting the app as an .ipa and uploading via Application Loader 3.0 worked for me. (Restarting xcode, cleaning, and re-archiving did not.)

Upvotes: 7

nevster
nevster

Reputation: 6465

Hmmm, well a restart of Xcode, a fresh clean, build and archive seems to have fixed it.

Upvotes: 182

Related Questions