标签:xcode conf bit xxx ios 通过 ble ios 8 ati
方式一: 去xcode中找到该插件修改build version 改到报错的版本号(这里实例为9.0);
这种方式在使用flutter build / flutter run 的时候会被重制
方式二:
通过将以下代码添加到Podfile最下面,替换原来的post_install,解决这个问题
post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| config.build_settings[‘ENABLE_BITCODE‘] = ‘NO‘ config.build_settings[‘IPHONEOS_DEPLOYMENT_TARGET‘] = ‘9.0‘ end end end
标签:xcode conf bit xxx ios 通过 ble ios 8 ati
原文地址:https://www.cnblogs.com/webfs/p/14348973.html