提交appstore审核遇到的错误

2022-03-16  本文已影响0人  JoyGY
整理自己以前记录的笔记发现可以整理一下分享出来,由于问题是自己刚工作时候一点点遇到的,也算是一路踩坑走过来的,希望可以帮到有缘人,如有不足,烦请指正,感谢!

提交APP遇到的错误(1)

打包上传APPStore Xcode报以下错误:
Missing iOS Distribution signing identity for XXXXXX


错误1.png

解析:
查看钥匙串中的证书后发现,Develop证书和Distribution证书都提示“此证书的签发者无效”。


image.png
什么是AppleWWDRCA证书?

搜索资料发现,原因是AppleWWDRCA (Apple Worldwide Developer Relations Certification Authority) 证书过期了。
AppleWWDRCA证书实际上就是对iOS证书(即Develop证书和Distribution证书)的授权认证,其公钥用于解密认证证书的可靠性。
iOS以及Mac OS X系统(在安装Xcode时)将自动安装AppleWWDRCA.cer(Apple Worldwide Developer Relations Certification Authority)这个中间证书(Intermediate Certificates)。

问题解决

需要更新AppleWWDRCA证书。

1.https://developer.apple.com/certificationauthority/AppleWWDRCA.cer下载最新AppleWWDRCA证书,双击安装。

2.打开钥匙串,选择登录,然后选择下面的证书。

3.选择桌面左上角的显示显示已过期的证书

4.这时候你会发现一个过期的“WWDR Certificate”(Apple Worldwide Developer Relations Certification Authority),删除它。

有的在System的那一栏也有这个过期的“WWDR Certificate”,也一并删除它。

5.再回头点击Develop证书和Distribution证书,不出意外他们都变成“此证书有效”了。

注意: 如果再回头点击Develop证书和Distribution证书的时候发现还没有变化的话 把证书里面的其他的无效证书全部删除,然后还不行的话需要重启电脑,然后打开钥匙串看一下是否变成“此证书有效”了。 如果还没有的话重新按上述步骤查找删除一遍,可能是由于没有删除干净的原因。彻底的删除完以后才会变成有效的证书。。。。
ps: 有时候需要关机重启

提交APP遇到的错误(2)

ERROR : "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/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'."

错误2.png
解析:

添加对应的启动图片
http://www.cnblogs.com/liufan9/p/3136064.html
参考这设置相应的启动图文件

提交APP遇到的错误(3)

ERROR ITMS-90475: "Invalid Bundle. iPad Multitasking support requires launch story board in bundle 'xxxx'."
ERROR ITMS-90474: "Invalid Bundle. iPad Multitasking support requires these orientations: 'UIInterfaceOrientationPortrait,UIInterfaceOrientationPortraitUpsideDown,UIInterfaceOrientationLandscapeLeft,UIInterfaceOrientationLandscapeRight'. Found 'UIInterfaceOrientationPortrait' in bundle 'xxxx'."


错误3.png
解析:

这是因为ios9 iPad 的分屏适配所致。
解决方法有两个:
1.偷懒方法:移除app对iPad Multitasking的支持,具体做法如下图


image.png

2.适配iPad Multitasking
可参考资料如下:
Mysteries of Auto Layout, Part 1
What's New in Storyboards
Implementing UI Designs in Interface Builder
Getting Started with Multitasking on iPad in iOS 9
Optimizing Your App for Multitasking on iPad in iOS

提交APP遇到的错误(4)

ERROR ITMS-90046: "Invalid Code Signing Entitlements. Your application bundle's signature contains code signing entitlements that are not supported on iOS. Specifically, value '*' for key 'com.apple.developer.associated-domains' in 'Payload/telewiki.app/telewiki' is not supported."


错误4.png
解析

检查工程文件中,TARGETS 下的各个扩展中的Capabilities 是否和 AppId中的配置一致
打开开发者中心 - 查看AppIDs,查看是否打开了其他没有用到的功能,将其关闭,然后再去重新编辑一下配置文件Provisioning Profiles 下载下来,双击,然后重新打包上传即可。


image.png

提交APP遇到的错误(5)

错误5.png
解析:

ERROR ITMS-90101: 这个问题是appstore上支持ipad&iphone,但是项目只支持iphone的,所以添加一下ipad的支持,增加对应的icon与启动图图片即可,并且更改general -> depolyment info -> Devices的设置选择 :由单独的iphone改为universal

ERROR ITMS-90717: 这个问题是因为新版的xcode增加了1024 * 1024的icon图标,所以看下icon中对应的1024 * 1024的图标的图片详情,看下 alpha通道 :否
注意:一定要设置为否,如果不是,可以图片导出 - 不勾选下面的alpha通道 (或者让UI重新切图导出)

image.png

提交APP遇到的错误(6)

error ITMS-90475: “Invalid Bundle. ….


image.png
解析:
image.png
上一篇下一篇

猜你喜欢

热点阅读