About the error solution of “doesnotcontainbitcode.”
When Xcode8 runs the project, the following error occurs: 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 armv7 About any bitcode error, what the hell is bitcode? What is bitcode? Popular explanation: the online version of Android ART mode. Apple official documentation – App Distribution Guide – App Thinning (iOS, watchOS) is defined as follows: Bitcode is an intermediate representation of a compiled program. Apps you upload to iTunes Connect that contain bitcode will be compiled and linked on the App Store. Including bitcode will allow Apple to re-optimize your app binary in the future without the need to submit a new version of your app to the store. The translation is: bitcode is an intermediate form of code for the compiled program. Apps that include bitcode configuration will be compiled and linked on the App Store. bitcode allows Apple to re-optimize our program’s binaries later without requiring us to resubmit a new version to the App Store. Introduction to Xcode—What’s New in Xcode-New Features in Xcode 7 This is described in: Bitcode. When you archive for submission to…