I am currently using Xcode 7 (Beta 6). I can build and run against the Simulator. But when I attempt to build and run against a real iPhone 6 running iOS 9, I get the following link error:
ld: 'Pods/ArcGIS-Runtime-SDK-iOS/ArcGIS.framework/ArcGIS(libArcGISRT.a-arm64-master.o)' does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Any ideas?
Solved! Go to Solution.
You may want to try this stack overflow post which may help answer your question:
http://stackoverflow.com/questions/30848208/new-warnings-in-ios9
Quoted from the post:
"You library was compiled without bitcode but the bitcode option is enabled in your project settings. Say NO
to Enable Bitcode
in your target Build Settings and the Library Build Settings to remove the warnings."
You may want to try this stack overflow post which may help answer your question:
http://stackoverflow.com/questions/30848208/new-warnings-in-ios9
Quoted from the post:
"You library was compiled without bitcode but the bitcode option is enabled in your project settings. Say NO
to Enable Bitcode
in your target Build Settings and the Library Build Settings to remove the warnings."