[iOS]ERROR ITMS-90071报错提示

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报错提示)