Ask Your Question
4

The build is failing because FBLPromises.framework lacks bitcode.

asked 2021-05-05 11:00:00 +0000

lakamha gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2022-10-29 20:00:00 +0000

qstack gravatar image

This error occurs when the FBLPromises.framework does not have bitcode enabled. Bitcode is a feature in iOS that allows apps to be compiled and optimized for different architectures. Enabling bitcode ensures that the app can run on different devices with different architectures.

To fix this error, you can try the following steps:

  1. Update to the latest version of FBLPromises.framework that supports bitcode.
  2. If the latest version does not support bitcode, you can recompile the framework with bitcode enabled.
  3. If recompiling the framework is not possible, you can disable bitcode in your Xcode project by going to Build Settings and setting "Enable Bitcode" to "No".

Note that disabling bitcode may affect app performance and compatibility across different devices, so it's important to test thoroughly before releasing the app to the App Store.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-05-05 11:00:00 +0000

Seen: 7 times

Last updated: Oct 29 '22