Hello 各位
最近升级到Xcode 9.0 & macOS High Sierra
上传App时碰到Error ITMS-90022
内容如下
"Missing required icon file.
The bundle does not contain an app icon for iPhone / iPod Touch
of exactly '120x120' pixels, in .png format for iOS versions >= 7.0."
大概是说少了120x120的icon
但明明在assets里确认 [email protected] & [email protected] 都确定有图
经过几天研究终于找到解法
(我的OS语系是英文 也许会和大家有点出入)
在Xcode Menu里点选Window -> Organizer
在要上传的Build点右键 -> Show in Finder
找到你的.xcarchive档点右键 -> Show Package Contents
在该路径下开启terminal
输入以下指令
find Products/ -name Info.plist -print0 | xargs -0n1 plutil -replace BuildMachineOSBuild -string 16A323
之后再上传应该就ok了
有碰到同样问题的可以试试看
谢谢大家