美文网首页
Xcode 打包 IPA processing failed

Xcode 打包 IPA processing failed

作者: lesmiserables0 | 来源:发表于2021-05-08 10:25 被阅读0次

iOS 13 不再支持 i386 x86_64 架构

挨个检查项目中的framework

1.cd /Users/***/Desktop/testDir/AliyunMediaDownloader.framework

2.lipo -info AliyunMediaDownloader

Architectures in the fat file: AliyunMediaDownloader are: i386 x86_64 armv7 arm64

删除framework 中的 i386 x86_64 架构。

3.lipo -remove i386 AliyunMediaDownloader -o AliyunMediaDownloader
lipo -remove x86_64 AliyunMediaDownloader -o AliyunMediaDownloader

相关文章

网友评论

      本文标题:Xcode 打包 IPA processing failed

      本文链接:https://www.haomeiwen.com/subject/zhfudltx.html