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."
解決方式
//首先用終端解壓打包好的應(yīng)用包
unzip YourApp.ipa -d AppContainer/
//然后到那個(gè)目錄下
cd AppContainer/Payload/YourApp.app
//首先你要產(chǎn)出CodeResources這個(gè)文件(如果不刪除直接進(jìn)行下一步操作他會(huì)提示已經(jīng)存在這個(gè)文件)
rm -rf CodeResources
//進(jìn)行軟連接(好像是這樣叫的)
ln -s _CodeSignature/CodeResources CodeResources
//最后在進(jìn)行打包上傳就可以了
zip -y -r YourFinalApp.ipa Payload/
注意:最好用打包的電腦去做