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

前端 未结 8 2197
执笔经年
执笔经年 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:43

    After Xcode 7, the bitcode option will be enabled by default. If your library was compiled without bitcode, but the bitcode option is enabled in your project settings, you can:

    1. Update your library with bit code,
    2. Say NO to Enable Bitcode in your target Build Settings

    Enter image description here

    And the Library Build Settings to remove the warnings.

    For more information, go to documentation of bitcode in developer library.

    And WWDC 2015 Session 102: "Platforms State of the Union"

    Enter image description here

    0 讨论(0)
  • 2020-11-22 17:46

    In my case for avoiding that problem:

    1. Be sure that you are dealing with Xcode 7, NOT lower versions. In lower version this flag does not exist.

    2. Setup: Project>Build Settings>All>Build Options>Enable Bitcode = NO

    0 讨论(0)
提交回复
热议问题