How to check if a framework is BITCODE supported for Xcode7

后端 未结 5 834
梦谈多话
梦谈多话 2020-12-04 14:46

From Xcode 7 it became one of the common problem that third party frameworks should support Bitcode. We can also disable the BITCODE by setting ENABLE_BITCODE to NO in Build

5条回答
  •  北海茫月
    2020-12-04 15:30

    you can try these commands:

    otool -arch armv7 -l libDeviceManager.a | grep bit code
    

    and

    otool -arch arm64 -l libDeviceManager.a | grep bitcode
    

提交回复
热议问题