美文网首页
iOS打包报错报错 90087、90209 等

iOS打包报错报错 90087、90209 等

作者: 小明2021 | 来源:发表于2018-05-30 17:21 被阅读36次

使用百度云OCR上传appstore 的时候报错:
主要是AipBase.frameworK的问题。
如图:


屏幕快照 2018-05-30 下午4.54.45.png

解决版本:

一: 进入你项目中的 AipBase.framework

命令: cd AipOcrSdk/AipBase.framework

二: 使用lifo -info 可以查看包含的架构

命令:lipo -info AipBase
展示的应该是: Architectures in the fat file: AipBase are: i386 x86_64 armv7 armv7s arm64

三: 移除x86_64, i386

命令一:lipo -remove x86_64 AipBase -o AipBase
命令二:lipo -remove i386 AipBase -o AipBase

再次查看

lipo -info AipBase
展示应该是: Architectures in the fat file: AipBase are: armv7 armv7s arm64

大功告成·····(亲测,发布成功)

相关文章

网友评论

      本文标题:iOS打包报错报错 90087、90209 等

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