- iOS打包报错报错 90087、90209 等
- Mac 终端去除自建framework中 i386 x86_64
- 引入三方的SDK SDK里面包含了x86_64, i386 架
- iOS上架报错90087, 90209, 90125, 9008
- iOS打包报错ERROR ITMS-90087: "U
- iOS上架报错90080,90087,90209,90125 脚
- Xcode打包出现ERROR ITMS-90087:Unsupp
- ios上架报错90080,90087,90209,90125 解
- ios上架报错90080,90087,90209,90125 解
- ios上架报错90080,90087,90209,90125 解
使用百度云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
网友评论