Xcode7上传appstore,所遇见的问题总结

1、ERROR ITMS-90072: "The IPA is invalid. It does not include a Payload direct

方法为:通 过普通的archieve方式export出ipa包,然后将此包解压缩,把其中的Applications文件夹中的应用程序复制出来,然后新建一个文 件夹叫Payload,然后将刚才的应用程序复制到该文件夹中,然后打包该文件成.zip文件,并修改后缀名成ipa,然后将此包通过 Application Loader上传即可。

猜测可能是xcode7的bug,可能是自己生产ipa包的时候没有使用Payload文件夹。

2、Your binary is not optimized for iPhone 5 - New iPhone apps and app updates

http://blog.sina.com.cn/s/blog_6c97abf10102voui.html 

3、missing required icon file. the bundle does not contain an app icon for iphone/ipod touch of exactly '120 120' pixels, in .png format for ios versions >= 7.0

最新的ios7需要额外的这三个尺寸的icon,'120x120','152x152','76x76',制作好加到项目里就行。https://developer.apple.com/library/ios/qa/qa1686/_index.html 

你可能感兴趣的:(Xcode7上传appstore,所遇见的问题总结)