iOS

The executable contains bitcode.

After archiving your mobile app on Xcode when preparing and uploading your app to the app store, there is sometimes an error that occurs when your app framework files contain raw bitcode.

This is likely in an installed library, and the framework in question would be found in the Pods folder in your project’s root directory. The following command can be run to strip the bitcode from your framework code.

xcrun bitcode_strip -r YourFramework. framework/YourFramework -o YourFramework. framework/YourFramework

Replacing of course YourFramework with the name of your framework listed in the above error message.

After running this command and archiving another copy of your app build, your submission will be successful to the app store.