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
网友评论