"xxx was built without full bitcode" 编译错误
因为引入了第三方编译时候提示的这个错误,详细的问 xxx does not contain bitcode. You must rebuild it with bitcode enabled (Xcodesetting ENABLE_BITCODE), obtain an updated library from the vendor, or disablebitcode for this target. for architecture arm64。
原因是第三方不支持bitcode,可以尝试联系第三方,或者直接关闭bitcode。bitcode选项默认是设置为YES,在”Build Settings”->”Enable Bitcode”选项中看到这个设置。对于iOS,bitcode是可选的;对于watchOS,bitcode是必须的;而Mac OS是不支持bitcode。
CocoaPods安装
# 更新源
sudo gem update --system
# 更换源
gem sources --add https://gems.ruby-china.com/ --remove https://rubygems.org/
# 查看源
gem sources -l
# 安装(直接sudo gem install cocoapods安装会有问题)
sudo gem install -n /usr/local/bin cocoapods
# 查看
pod --version
# 使用。 进入项目根目录
pod install
网友评论