Today, to upgrade Xcode to 7.0, in addition to some of the swift syntax problems, there are a few more problems, one of which is included in the title of a false hint.
Development environment: Xcode 7.0
Development language: Swift (introduction of third-party OC Libraries)
The scene appears:
Normal debugging is no problem, but in the archive, reported this error.
Question Details:
(null): Urgent:all Bitcode is dropped because ' xxxx ' was built without bitcode. You must rebuild it with Bitcode enabled (Xcode setting Enable_bitcode), obtain a updated library from the vendor, or dis Able Bitcode for this target. Note:this'll be a error in the future.
Problem Analysis:
As can be seen from the above error, this is because a third-party library is incompatible, my project opened Enable_bitcode (should be automatically converted after the upgrade), and this third-party library at the time of compilation does not ENABLE Bitcode, So the question of appeal was caused.
Workaround:
There should be two kinds of it, one is to switch to enable Bitcode third-party library, and another is to set the Enable_bitcode of the project to False.
Because I am not very convenient to change the library, so, the project set to change a bit.
Here's how it works:
The above solution is to change the construction of the project, but after the change of what effect has not yet been found. This article will be updated if it is discovered later.
"Workaround" must rebuild it with Bitcode enabled (Xc