LoginSignup
6

More than 5 years have passed since last update.

swift2 Cocoapodsで入れてるライブラリでBitCode=NOにしろと怒られた時の対処法

Posted at

実行しようとしたときにBitCODE=NOにしろと怒られた。

Podfileに以下を記述
ターゲットごとにBitCode = NOにしていく感じ

post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings['ENABLE_BITCODE'] = 'NO'
    end
  end
end

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6