The platform of the target Runner (iOS 10.0) may not be compatible with Flutter (1.0.0) which has a minimum requirement of iOS 11.0. 警告
产生原因:flutter sdk 版本由3.0.x 升级到 3.3.6后,
执行 pod install 时报Warming
修改方法,找到 flutter工程项目/ios/下 Podfile 文件
将以下代码:
platform :ios, '10.0'
修改为
platform :ios, '11.0'
重新运行 pod install 命令,警告⚠️消失