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
5.Xcode11打包导出不成功 IPA processing failed
原因:xcode11
各种架构解释:
模拟器32位处理器测试需要i386架构,(iphone5,iphone5s以下的模拟器)
模拟器64位处理器测试需要x86_64架构,(iphone6以上的模拟器)
真机32位处理器需要armv7,或者armv7s架构,(iphone4真机/armv7, ipnone5,iphone5s真机/armv7s)
真机64位处理器需要arm64架构。(iphone6,iphone6p以上的真机)
解决办法
查看日志:IDEDistribution.standard.log
先找到那个log 所用的API是哪个,删除SDK中的i386,x86_86架构
我当前使用到了NIMSDK.framework这个SDK,假设NIMSDK.framework存放的目录是:
/Users/leo/Desktop/testDir/NIMSDK.framework
1.使用终端进入到SDK内部
cd /Users/leo/Desktop/testDir/NIMSDK.framework
2.查看当前支持的架构
lipo -info NIMSDK
可以看到NIMSDK当前支持的架构:
Architectures in the fat file: NIMSDK are: i386 x86_64 armv7 arm64
3.删掉i386,x86_86
lipo -remove i386 NIMSDK -o NIMSDK
lipo -remove x86_64 NIMSDK -o NIMSDK
可参考:https://www.jianshu.com/p/4e18e8399fad
6.No architectures to compile for (ONLY_ACTIVE_ARCH=YES, active arch=arm64, VALID_ARCHS=armv7 armv7s)
解决办法:可能删了架构或多了架构
在如图位置确定需要的是哪些架构
7.Command PhaseScriptExecution failed with a nonzero exit code
原因:这是因为Xcode10是默认选中的最新的New Build System(Default),在这个编译系统的环境下,打包的CI脚本一直会报错。
解决办法:
Xcode菜单栏选择File-- Workspace Setting,把new build system(Defalt)切换到 Legacy Build System 在模拟器上运行就OK!
8.Profile doesn't include the selected signing certificate.
原因:推送证书过期,前往开发者网站配置
解决办法:https://www.jianshu.com/p/df14f26fa360
9.打包用transporter上传ipa报错
The filename 未命名.ipa in the package contains an invalid character(s). The valid characters are: A-Z, a-z, 0-9, dash, period, underscore, but the name cannot start with a dash, period, or underscore
解决方法:
在Archive之后得到的包不能是中文名,随便改个英文名就可以了。