I encountered this problem after updating to macOS 15 Sequoia and the latest version of Xcode 16. I’m getting this error when trying to publish the build from Xcode.
Does anyone know the solution?
I encountered this problem after updating to macOS 15 Sequoia and the latest version of Xcode 16. I’m getting this error when trying to publish the build from Xcode.
Does anyone know the solution?
2
Answers
I encountered the same issue and resolved it using the following steps:
Explanation:
bitcode_strip
tool to remove bitcode from specified frameworks.'YourFramework'
with the actual name of your framework.Reference:
For more context, you can check this Bitrise discussion.
Thanks!
What is bitcode?
Bitcode is an intermediate representation of an app’s compiled code that allows Apple to optimize app performance and compatibility.
With Xcode 16, Apple has deprecated bitcode for all platforms, meaning that builds with bitcode enabled are no longer accepted.
Execute this command in Pods folder of your project:
Note:
Replace USED_FRAMEWORK with your own used framework name.
Example:
Repeat this command for your all used frameworks which are reported as "contains bitcode" in the errors/logs panel when you’re uploading app to AppStore.