我在 MacOS 上使用 "flutterSdkVersion": "3.3.10" 和 fvm 问题是当我运行“fvm flutter run”时出现以下错误
当我运行 dart --version 时,我得到“Dart SDK version: 2.18.6 (stable) (Tue Dec 13 21:15:14 2022 +0000) on "macos_arm64"” - 此 Flutter 版本的正确 SDK 版本
我已经使用清理脚本清理了项目中的缓存,并使用
dart pub cache clean
清理了全局 Dart 缓存。
我有这个清理脚本
# Run Flutter commands
fvm flutter clean
fvm flutter pub cache repair
fvm flutter pub get
# Change to the ios directory
cd ios/
# Remove the .symlinks and Pods folders
rm -rf .symlinks
rm -rf Pods
# Run CocoaPods commands
pod deintegrate
pod cache clean --all
pod repo update
pod install
但一切都没有改变。你有什么建议吗?
发现哪个软件包版本与您的 dart 不兼容