Reputation: 101
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:
Could not make parent directory for: /Users/DEC/.itmstransporter/softwaresupport/bin/Frameworks/MZXMLMarshalling.framework/Resources/Info.plist
Could not configure software support.
An exception has occurred: /Users/DEC/.itmstransporter/softwaresupport/bin/Frameworks/MZXMLMarshalling.framework/Resources/Info.plist (No such file or directory)
The session's status is FAILED and the error description is 'failed to open ssh session. (16)'
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.
Upvotes: 4
Views: 606
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