关于iOS上传APP的IPA文件ERROR ITMS-90717
工具版本:Xcode 9.2
工具版本今天为止又写好一个应用,准备再次打包一个新的应用准备上架到App Store,当我使用Xcode生成IPA文件后,上传的时候突然出现这样的弹窗:
报错截图报错1:
ERROR ITMS-90096: “Your binary is not optimized for iPhone 5 - New iPhone apps and app updates submitted must support the 4-inch display on iPhone 5 and must include a launch image referenced in the Info.plist under UILaunchImages with a UILaunchImageSize value set to {320, 568}. Launch images must be PNG files and located at the top-level of your bundle, or provided within each .lproj folder if you localize your launch images. Learn more about iPhone 5 support and app launch images by reviewing the ‘iOS Human Interface Guidelines’ at https://developer.apple.com/ios/human-interface-guidelines/graphics/launch-screen.”
这个报错的大致意思是说需要上传iPhone 5启动图片,而且必须是 320 * 568大小的,而且必须放在根目录下,然后我是这么做的:
1、图片的名称命名为Default-568.png。
2、把图片放在工程的根目录下
3、图片尺寸是320*568
工程截图1 工程截图2我是直接把代码写在了info.plist里面,那段代码为(不知道为什么粘贴了几次这个代码片段都不能粘贴上去,所以只能截图了):
代码片段上面的操作都完成之后就不会有报错了!
报错2:
ERROR ITMS-90717: “Invalid App Store Icon. The App Store Icon in the asset catalog in ‘*.app’ can’t be transparent nor contain an alpha channel.”
大致意思就是App Store Icon这张图片不符要求,可能是有透明度或者圆角的问题。
然后我就找UI妹子切了一张方角的 1024 * 1024放进APPicon就搞定了!
更换图片之前的样子 更换为方角的图片之后以上就是我这次上传新APP遇到的报错解决方法,希望能帮到你!如果有疑问,也可以QQ联系我,QQ:834537795。