美文网首页娱乐圈程序员
解决打包上传一直停留在authenticating with t

解决打包上传一直停留在authenticating with t

作者: 曾经像素有点低 | 来源:发表于2018-02-06 16:42 被阅读963次
    • iTunes Store Operation Failed
    • An error occurred uploading to the iTunes Store
    • authenticating with the itunes store

    如图

    Authenticating with the iTunes Store.png
    • 停在上图一段那时间后,出现下图:
    082.png

    第一:
    有可能是中文编码的问题,需要把编译的文件包名改成英文的,然后在压缩提交;
    第二:
    你的电脑java包长时间未更新,
    第三:
    应该是java的安全问题冲突,需要在终端里执行一段命令,中间可能需要输入密码

    终端执行四条命令完美解决

    1 cd ~
    2 mv .itmstransporter/ .old_itmstransporter/         备份原文件.itmstransporter/到.old_itmstransporter/
    3 rm -rf .itmstransporter/                       删除原有文件夹,不删除的话ITMSTransporter的更新可能会卡住
    4 "/Applications/Xcode.app/Contents/Applications/Application Loader.app/Contents/itms/bin/iTMSTransporter" 
            启用iTMSTransporter自动更新程序,不同Mac系统版本ITMSTransporter文件目录可能不同,本文系统是10.13.3
    
    

    注意:

    一定要等第四条命令执行完毕才可以哦!

    补充:有些时候第四条命令无法执行完毕:
    也就是说 ——iTMSTransporter不能自动更新运行完成,如果不能打开iTMSTransporter,就根据这个目录在Finder里找到iTMSTransporter,手动打开

    //手动打开方法
    
    进入“应用程序”—》右键Xcode—》显示包内容—》Contents-》Applications-》
    
    
    application loader1.png
    然后 [右键 Application loader]—》显示包内容—》Contents-》itms-》lib-》iTMSTransporter 
    
    【双击 iTMSTransporter 】
    
    
    application loader.png application loader1.png

    相关文章

      网友评论

        本文标题:解决打包上传一直停留在authenticating with t

        本文链接:https://www.haomeiwen.com/subject/ffigzxtx.html