IOS文字识别run没问题,但是archive时报错
Ta的回复 :编译Demo工程时提示"AipOcrSdk/AipOcrSdk.h 不存在"。 AipOcrDemo工程依赖了AipOcrSdk工程,请先Build AipOcrSdk工程。 直接运行无问题,但Archive/IPA/Upload AppStore 时报错"Unsupported Architecture. Your executable contains unsupported architecture '[x86_64, i386]..." 为了方便开发者调试,AipBase.framework合并了模拟器和真机架构,上线前,使用lipo工具移除相关架构即可,参考: # 进入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