iOS 项目运行pod install报错 could not find compatible versions
iOS 项目运行pod install报错
[!] CocoaPods could not find compatible versions for pod "flutter_sound_lite":
In Podfile:
FlutterPluginRegistrant (from `Flutter/FlutterPluginRegistrant`) was resolved to 0.0.1, which depends on
flutter_sound_lite
flutter_sound_lite (from `Flutter/.symlinks/flutter_sound_lite/ios`)
Specs satisfying the `flutter_sound_lite (from `Flutter/.symlinks/flutter_sound_lite/ios`), flutter_sound_lite` dependency were found, but they required a higher minimum deployment target.
解决办法:
Podfile修改
platform :ios, '9.0' 为
platform :ios, '10.0'