1.打包时出现:Your account already has a valid iOS Distribution certificate!
- 出现下图提示的错误提供了两种解决方式,一个是把之前的发布证书导出来
拿到你发布的mac上用,目前采用第二种方式处理直接删除之前的重新申请发布证书
1.- 登陆发开发者中心,删除一个发布证书
2.- 然后按照正常的发布证书申请流程就行申请
3.- 最后回来Xcode提交打包文件
参考
简书
2.打包报错:All object files and libraries for bitcode must be generated from Xcode Archive or Install build for architecture arm64
错误解决:关闭bitcode
在Xcode 7中,我们新建一个iOS程序时,bitcode选项默认是设置为YES的。我们可以在”Build Settings”->“build options”->”Enable Bitcode”选项中看到这个设置。
3.打包报错:ERROR ITMS-90474: "Invalid Bundle. iPad Multitasking support requires these orientations: 'UIInterfaceOrientationPortrait,UIInterfaceOrientationPortraitUpsideDown,UIInterfaceOrientationLandscapeLeft,UIInterfaceOrientationLandscapeRight'. Found 'UIInterfaceOrientationPortrait' in bundle 'xxxx'."

4.打包报错:ERROR ITMS-90023: "Missing required icon file. The bundle does not contain an app icon for iPad of exactly '76x76' pixels, in .png format for iOS versions >= 7.0."
原因:App没有适配iPad

网友评论