Bitcode导致打包出错问题

1.问题引入:

项目中集成了友盟统计和通知,打包时报如下错误,怀疑是Bitcode引起的。

错误信息.png

2.解决方式:

在Target 》 Build Settings 》Enable Bitcode 设置为NO,再次打包成功。

Bitcode导致打包出错问题_第1张图片
设置Bitcode.png

3.原因探究:

3.1 首先Bitcode是什么?

查看的官方文档,在APPDistribution Guide–App Thinning (ios, watchOS)一节中,找到了下面这样一个定义:

Bitcode is an intermediate representationof a compiled program. Apps you upload to iTunes Connect that contain bitcodewill be compiled and linked on the App Store. Including bitcode will allowApple to re-optimize your app binary in the future without the need to submit anew version of your app to the store.
bitcode是被编译程序的一种中间形式的代码。包含bitcode配置的程序将会在App store上被编译和链接。bitcode允许苹果在后期重新优化程序的二进制文件,而不需要重新提交一个新的版本到App store上。

在What’s New in Xcode-New Features in Xcode 7中,还有一段如下的描述:

Bitcode. When you archive for submission tothe App Store, Xcode will compile your app into an intermediate representation.The App Store will then compile the bitcode down into the 64 or 32 bitexecutables as necessary.
当提交程序到App store上时,Xcode会将程序编译为一个中间表现形式(bitcode)。然后App store会再将这个botcode编译为可执行的64位或32位程序。

3.2 Bitcode的使用

上面两段描述,都是放在App Thinning(App瘦身)一节中,可以看出Bitcode包的作用其实就是让苹果对我们的编译代码进行一次优化。在Xcode7中,新建一个iOS程序时,Bitcode选项是默认设置YES的。

  • iOS---Bitcode是可选的,根据对APP的要求以及第三方库是否支持而决定,第三方库支持就选YES,不支持就选NO。
  • watchOS---Bitcode是必选的。
  • Mac OS---不支持Bitcode。

你可能感兴趣的:(Bitcode导致打包出错问题)