flutter build ios 警告:
warning: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0 to 14.4.99. (in target 'FMDB' from project 'Pods')
解決辦法:在ios中podfile文件最后添加如下代碼
post_install do |installer|
? installer.pods_project.targets.each do |target|
? ? flutter_additional_ios_build_settings(target)
? ? target.build_configurations.each do |config|
? ? ? config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
? ? end
? end
網(wǎng)上搜索需要? 全局搜索 8.0 替換為10.0 或9.0? 試驗了 我這邊還是不行行旅掂,最終還是上面方式有效果臭蚁。