How can I successfully upload a binary to Xcode 7 without these errors?

I archive the binary with Xcode 7, then check the binary, and when I try to send to the iOS Appstore, I get the following errors:

  • Failed to create parent directory for: /Users/DEC/.itmstransporter/softwaresupport/bin/Frameworks/MZXMLMarshalling.framework/Resources/Info.plist

  • Unable to configure software support.

  • An exception occurred: /Users/DEC/.itmstransporter/softwaresupport/bin/Frameworks/MZXMLMarshalling.framework/Resources/Info.plist (There is no such file or directory)

  • FAILED session state and error description 'could not open ssh session. (16)'

The application works fine in the iOS simulator and on the iPhone 5 (iOS 8.3) and it looks like an error in the code.

I am also trying to download with the application loader, but the same thing happens.

I think it could be something about xcode 7 or ios 9 because I didn’t have these problems before.

Thank you for your help.

error screenshot

+4
source share
1 answer

This seems to solve the problem:

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

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

+6
source

Source: https://habr.com/ru/post/1608812/


All Articles