1.查看Logs
1578564543882.jpg
2.打開IDEDistribution.standard.log纲堵,搜索X86_64,可以找到報錯的framework
1578564812477.jpg
3.用終端 cd 到AipBase.framework纵隔,查找此framework支持的架構(gòu)。
lipo -info AipBase
返回
Architectures in the fat file: AipBase are: i386 x86_64 armv7 arm64
4.刪除i386 和 x86_64
lipo -remove i386 AipBase -o AipBase
lipo -remove x86_64 AipBase -o AipBase
Over