Xcode7(修改Bitcode) does not contain bitcode. You must rebuild it with bit code enabled. -- @ShinePug

来源:互联网 发布:网络电视台 编辑:程序博客网 时间:2024/06/05 07:11

问题描述: xcode7 更新之后错误提示: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.

问题原因: 因为Watch应用须包含Bitcode,iOS不强制,但Xcode7默认会开启Bitcode。


解决问题: 

方法一:更新library使包含Bitcode,否则会出现以下中的警告;

 
(null): URGENT: all bitcode will be dropped because ‘/Users/myname/Library/Mobile Documents/com~apple~CloudDocs/foldername/appname/GoogleMobileAds.framework/GoogleMobileAds(GADSlot+AdEvents.o)‘ was built without 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. Note: This will be an error in the future.

方法二:关闭Bitcode

工程设置中 buildingsetting 中搜索bit code 选择NO

0 0
原创粉丝点击