通过Xcode上传iOS应用,卡死在Authenticating with the iTunes Store。
解决办法如下,依次在Console中运行一下命令即可:
1 2 3 |
cd ~ mv .itmstransporter/ .old_itmstransporter/ "/Applications/Xcode.app/Contents/Applications/Application Loader.app/Contents/itms/bin/iTMSTransporter" |
其中,最后一行中的/Applications/Xcode.app是Xcode的安装路径,有需要可自行修改。待iTMSTransporter升级完以后,再上传App就一次解决了。
根据网上的资料,上述问题产生的原因在于Organizer和App Loader都是通过iTMSTransporter上传文件的。这个iTMSTransporter经常更新失败,而上述命令行里的命令相当于删掉了更新失败的iTMSTransporter然后又重新下载了一份。
转载时请保留出处,违法转载追究到底:进城务工人员小梅 » Xcode上传iOS应用卡死在Authenticating with the iTunes Store的解决