Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

error: Bundle only contains bitcode-marker

I use the Xcode7 release and tried so submit my app for review. After submitting the app for review I got a mail from Apple with the following error:

Invalid Bundle - Failed to verify bitcode in 
testapp_main.framework/testapp_main: error: Bundle only contains 
bitcode-marker Testapp.app/Frameworks/testapp_main.framework/testapp_main (armv7) ...

I also disabled bitcode in my Build Settings:

enter image description here

How do I solve this issue?

like image 546
confile Avatar asked Sep 24 '15 01:09

confile


1 Answers

I'm having the same issue. Bitcode is enabled in both the framework that I've created myself and the incorporating project. Architectures are arm64, armv7, armv7s. Deployment target is iOS 8.0. SDK is iOS 9 (Xcode 7.0.1).

These are the errors that I get when it fails:

"Solution"

When trying to validate or submit to iTunes Connect, unchecking either "Include app symbols..." or "Include bitcode" allows validation to succeed. It's just when both of them are checked that it fails. I wouldn't really consider this a solution though.. You either have to give up receiving crash logs or utilizing app thinking, both of which would be preferably enabled. This is just a temporary workaround until someone else can figure out what is really causing the issue.

like image 163
null pointer exception Avatar answered Oct 12 '22 16:10

null pointer exception