kriOSDeveloper
kriOSDeveloper

Reputation: 101

How can I successfully upload a binary on Xcode 7 without this errors?

I archive a binary with Xcode 7, then I validate the binary and when I try to submit to the iOS Appstore, I get the following errors:

The app runs perfectly in the iOS simulator and on the iPhone 5(iOS 8.3) and it doest seems like there is an error in the code.

I also try the uploading with the application loader but the same happens.

I think it could be something about xcode 7 or ios 9 because i didnt have this problems before.

Thanks for your help.

screenshot of the errors

Upvotes: 4

Views: 606

Answers (1)

lechonex
lechonex

Reputation: 165

This seems to solve the issue:

$ cd ~/.itmstransporter  
$ rm update_check*  
$ mv softwaresupport softwaresupport.bak  
$ cd UploadTokens  
$ rm *.token  

(from http://blog.csdn.net/sqc3375177/article/details/49175691)

Upvotes: 6

Related Questions