Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在启用 Bitcode的情况下构建我的应用程序。据我所知,我所有的 3rd 方库依赖项都启用了 Bitcode。但是当我进行构建时,我得到了这个错误:
ld: -bundle and -bitcode_bundle (Xcode setting ENABLE_BITCODE=YES) cannot be used together
我该如何解决?
我错误地将我的DEBUG和TEST配置设置为使用 Bitcode 构建,这就是导致上述错误的原因。仅启用 Bitcode 以RELEASE修复它:
DEBUG
TEST
RELEASE
(您的应用程序和任何嵌入式框架目标应如下所示 - 根本不要在您的测试和 UI 测试目标上启用 Bitcode。)