Xcode 打包IPA processing failed

846 阅读1分钟

Xcode打包完成后,导出ipa包出现IPA processing failed

解决方案: 检查使用的framework是否包含i386、x86_64架构

检查framework 架构信息

// 查看架构信息
lipo -i SciChart.framework/SciChart
//终端输出结果
Architectures in the fat file: SciChart.framework/SciChart are: i386 x86_64 armv7 arm64

去掉i386、x86_64架构

lipo -remove i386 SciChart.framework/SciChart
lipo -remove x86_64 SciChart.framework/SciChart

重新打包导出IPA成功