更新Xcode11之后,在上传App Store过程中发现有时会在Uploading界面一直卡在Authenticating with the App Store…试了好几次都是卡住,一整天都不会动。
原因是在Xcode11中苹果已经删除了自带的Application Loader,然后我们在更新时transporter可能因为某种原因损坏了,所以上传才会一直卡在Authenticating with the App Store...这一步。最终的解决方案如下:
第一步: 打开访达,shift+command+g前往如下文件夹~/Library/Caches/com.apple.amp.itmstransporter/
第二步: 删除该文件夹内的所有文件。
第三步: 打开终端输入
/Applications/Xcode.app/Contents/SharedFrameworks/ContentDeliveryServices.framework/Versions/A/itms/bin/iTMSTransporter,会下载大概60M+的文件。
第四步: 重启Xcode,此时就可以正常上传到App Store了。
注意:如果之前使用过shift+command+k清除缓存,需要重新运行以上四步。