XCode9打包上传遇到的问题

打包成功后 用Application Loader上传时 总是报这个错误  

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.

开始以为是图片弄错了 但是回归到App以前版本打包也是依然出这个错误 

后来网上查了一下有一个解决方案很好  不过我还没尝试 

我的方案是 1. 用xcode8 打包  Application Loader上传 完美成功

2.以下是找的听说有效的解决方案地址:

http://blog.csdn.net/yohunl/article/details/78065656

主要的一句命令是这个 find Products/ -name Info.plist -print0 | xargs -0n1 plutil -replace BuildMachineOSBuild -string 16A323

12月28号用了方案2  可以打包成功上传 但是活动里却找不到  是在是不知道到底是为什么 有知道的伙伴们可以分享一下  今天只能用xcode8来打包上传了

原文地址:https://www.cnblogs.com/MaybeQueen/p/8135056.html