美文网首页
[iOS]ERROR ITMS-90071报错提示

[iOS]ERROR ITMS-90071报错提示

作者: 雨影 | 来源:发表于2018-12-21 09:48 被阅读14次

    ERROR ITMS-90071: "This bundle is invalid. The CodeResources file must be a symbolic link to _CodeSignature/CodeResources. Make certain that the bundle is on a locally-mounted volume [not a remote SMB volume], and be certain to use the macOS Finder to compress it."

    解决方式

    //首先用终端解压打包好的应用包 
    unzip YourApp.ipa -d AppContainer/
    
    //然后到那个目录下 
    cd AppContainer/Payload/YourApp.app
    
    //首先你要产出CodeResources这个文件(如果不删除直接进行下一步操作他会提示已经存在这个文件) 
    rm -rf CodeResources
    
    //进行软连接(好像是这样叫的) 
    ln -s _CodeSignature/CodeResources CodeResources
    
    //最后在进行打包上传就可以了 
    zip -y -r YourFinalApp.ipa Payload/
    

    注意:最好用打包的电脑去做

    相关文章

      网友评论

          本文标题:[iOS]ERROR ITMS-90071报错提示

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