您的位置:首页 > 移动开发

iOS APP最新上架流程资料收集和遇到坑时的解决方案

2016-05-12 10:32 591 查看
第一次提交APP进行上架,不用说肯定遇到很多问题的了,人生不如意十有八九,哪有那么凑巧刚好弄到一呢。。。。

1. APP最新上架流程资料收集

目前最新的齐全的上架流程个人感觉最好的是这个:
http://www.jianshu.com/p/996672107eb1
下面这个也不错,但是时间比较久,版本有些不一样了
http://www.cnblogs.com/496668219long/p/4603791.html

2.遇到的坑

此证书的签发者无效Missing iOS Distribution signing identity问题解决  
这个问题我到现在还没有懂,不过网上资料也很多,上面是个连接,点击就可以了
一看知道是证书出现了问题,我手贱把钥匙串中的证书给删了,然后出现一连串的问题,幸好,在删除之前做好了备份,不然怎么死都不知道。
搞不定了我就把证书全部给弄回去了,然后下载了下面衔接一的一个证书,就搞定了。

http://blog.csdn.net/iosHot

Command/usr/bin/codesign failed with exit code 1
 Code Sign error: Nomatching provisioning profile found: Your build settings specify a provisioningprofile with the UUID “XXXX”, however, no such provisioning profile was found.

如果打包时,出现上面的错误的话,那应该是你添加了两个相同的证书在钥匙串了,找到相同的证书,删掉一个就行了。

ERRORITMS-90096: "Your binary is not optimized for iPhone 5 - New iPhone appsand app updates submitted must support the 4-inch display on iPhone 5 and mustinclude a launch image referenced in the Info.plist under UILaunchImages
with aUILaunchImageSize value set to {320, 568}. Launch images must be PNG files andlocated at the top-level of your bundle, or provided within each .lproj folderif you localize your launch images. Learn more about iPhone 5 support and applaunch images by
reviewing the 'iOS Human Interface Guidelines' at'https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/MobileHIG/IconsImages/IconsImages.html#//apple_ref/doc/uid/TP40006556-CH14-SW5'and the 'iOS App Programming Guide' at 'https://developer.apple.com/library/ios/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/App-RelatedResources/App-RelatedResources.html#//apple_ref/doc/uid/TP40007072-CH6-SW12'."

Upload to App Store的时候出现这问题,是缺了一个启动图画

解决方法:
用Xcode7向App Store提交二进制文件是,提示ERROR ITMS-90096:"You
binary is not optimized for iPhone 5....".


在工程里的Images.xcassets添加并设置LaunchImage对解决ERROR
ITMS-90096根本不会起到任何作用,需要单独添加针对iPhone5的载入图片。关键点有三项:1、图片的名称必须叫Default-568.png。2、必须把图片放在工程的根目录下。3、图片尺寸必须是320*568。


然后在plist中添加








然后再看到这个选项



清空了这个选项之后,最好把项目多清空几遍(shift+cmd+k),之后xcode报的有关lanuchimage的警告,最好都解决。我是这样做了就好了的。(mac10.11+xcode7.0.1)

ERROR ITMS-90096根本不会起到任何作用,需要单独添加针对iPhone5的载入图片。关键点有三项:1、图片的名称必须叫Default-568.png。2、必须把图片放在工程的根目录下。3、图片尺寸必须是320*568。
然后在plist中添加



内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: