New warnings in iOS 9: “all bitcode will be dropped”

前端 未结 8 2299
执笔经年
执笔经年 2020-11-22 16:49

I have this new warning about the Google Framework in my app:

(null): URGENT: all bitcode will be dropped because \'/Users/myname/Library/Mobile D

8条回答
  •  我寻月下人不归
    2020-11-22 17:28

    If you are using CocoaPods and you want to disable Bitcode for all libraries, use the following command in the Podfile

    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
    

提交回复
热议问题