Application Loader: “Cannot proceed with delivery: an existing transporter instance is currently uploading this package”

前端 未结 7 739
后悔当初
后悔当初 2020-12-12 15:38

I have been unable to overcome this error in Application Loader. I\'ve quit, restarted, tried different computers - it\'s like the server is hung up on an op that I never i

7条回答
  •  生来不讨喜
    2020-12-12 15:56

    Basically, you need to clear out the transport tokens. This can happen if you were to close out of Xcode while in the middle of submitting an app to iTunes Connect.

    The token files now appear in the

    Library/Caches/com.apple.amp.itmstransporter/UploadTokens/ subfolder of the given user's home directory. Which, honestly, is a better place for them anyway.

    Delete any .token files in this directory.

    -- If you are unable to find the .token files, this is because they are hidden in Finder. To hide/show hidden files in Finder, use the following Terminal command (TRUE = UNHIDE, FALSE = HIDE):

    defaults write com.apple.finder AppleShowAllFiles TRUE;killall Finder
    

提交回复
热议问题