Xcode11上传AppStore卡在Authenticating with the App Store的解决办法

使用Xcode11,结果发现打包iPA上传的时候,无限卡在authenticating with the app store。搜索到最多的就是以下这个答案。

        1. cd ~

        2. mv .itmstransporter/ .old_itmstransporter/

        3. "/Applications/Xcode.app/Contents/Applications/Application Loader.app/Contents/itms/bin/iTMSTransporter"

试了半天,发现这个方法是Xcode11之前的解决办法。

后来参考https://www.jianshu.com/p/850529fda19e,按照以下步骤操作

       step1: 打开终端输入

        open ~/Library/Caches/com.apple.amp.itmstransporter/

        step2: 删除文件夹内的所有文件

        step3: 在终端输入 (经过自己测试,换成手机热点确实会快一些)

/Applications/Xcode.app/Contents/SharedFrameworks/ContentDeliveryServices.framework/Versions/A/itms/bin/iTMSTransporter

        step4: 下载完了后重启Xcode

但做这步的时候,step2,我是mv备份的,没有直接rm

做完上面的4步还是卡着不动,后来我把备份的文件cp -rf覆盖回来,1分钟就上传完成了!

这个问题的原因就是因为,更新Xcode11过程中transporter因为某种原因损坏

你可能感兴趣的:(Xcode11上传AppStore卡在Authenticating with the App Store的解决办法)