无法生成bitcode包,因为iOS图表

时间:2016-01-07 22:21:03

标签: ios xcode ios-charts bitcode

我使用3d库iOS-Charts制作应用。但是我得到错误 bitcode bundle无法生成因为没有完整的bitcode。来自今天的widget。我帮助迦太基安装了它,我做了所有的指示。我不知道怎么解决它?我从今天的小部件目标做了以下截图。 enter image description here

3 个答案:

答案 0 :(得分:2)

请检查此SO线程,看看在构建设置中添加-fembed-bitcode标志是否适合您。

iOS library to BitCode

答案 1 :(得分:2)

请尝试在“构建设置”中将“启用位码”更改为“否”。

enter image description here

答案 2 :(得分:0)

我发现一个可能的原因是,如果您使用的是CocoaPods,而依赖项没有使用位码进行编译。

我将其添加到Podfile中进行修复。

post_install do |installer|
  installer.pods_project.build_configurations.each do |config|
    config.build_settings['BITCODE_GENERATION_MODE'] = 'bitcode'
    config.build_settings['ENABLE_BITCODE'] = 'YES'
  end
end