由于 iOS 编译的特殊性,为了方便开发者在模拟器调试,很多 SDK 将i386
、x86_64
、armv7
、arm64
几个平台都合并到了一起。在开发阶段都没有问题,但生产编译上传到 App Store 时,需要将i386
和x86_64
两个平台的库删除,否则无法正常提交审核。
// armv7
lipo Hyphenate.framework/Hyphenate -thin armv7 -output Hyphenate_armv7
// arm64
lipo Hyphenate.framework/Hyphenate -thin arm64 -output Hyphenate_arm64
可以参照:
https://juejin.cn/post/6844903859731578887
附其他命令:
command is one of:
-archs
-create
-detailed_info
-extract <arch_type> [-extract <arch_type> ...]
-extract_family <arch_type> [-extract_family <arch_type> ...]
-info
-remove <arch_type> [-remove <arch_type> ...]
-replace <arch_type> <file_name> [-replace <arch_type> <file_name> ...]
-thin <arch_type>
-verify_arch <arch_type> ...
options are one or more of:
-arch <arch_type> <input_file>
-hideARM64
-output <output_file>
-segalign <arch_type> <alignment>