我刚刚从Windows 10切换到Mac。我已经发布了Flutter应用程序的Android版本。现在,我正在开发Flutter应用程序的IOS版本。当我尝试在Mac上运行我的应用程序时,出现以下错误。


  mlkit (from `.symlinks/plugins/mlkit/ios`) was resolved to 0.8.3, which depends on
  Firebase/Core (~> 5.11.0)

  CocoaPods could not find compatible versions for pod "Firebase/CoreOnly":
  In Podfile:
  firebase_auth (from `.symlinks/plugins/firebase_auth/ios`) was resolved to 0.0.1, which depends on
  Firebase/Auth (~> 5.19) was resolved to 5.19.0, which depends on
  Firebase/CoreOnly (= 5.19.0)

  mlkit (from `.symlinks/plugins/mlkit/ios`) was resolved to 0.8.3, which depends on
  Firebase/Core (~> 5.11.0) was resolved to 5.11.0, which depends on
  Firebase/CoreOnly (= 5.11.0)

  CocoaPods could not find compatible versions for pod "FirebaseCore":
  In Podfile:
  mlkit (from `.symlinks/plugins/mlkit/ios`) was resolved to 0.8.3, which depends on
  Firebase/Core (~> 5.11.0) was resolved to 5.11.0, which depends on
  Firebase/CoreOnly (= 5.11.0) was resolved to 5.11.0, which depends on
  FirebaseCore (= 5.1.6)

  mlkit (from `.symlinks/plugins/mlkit/ios`) was resolved to 0.8.3, which depends on
  Firebase/Core (~> 5.11.0) was resolved to 5.11.0, which depends on
  FirebaseAnalytics (= 5.3.0) was resolved to 5.3.0, which depends on
  FirebaseCore (~> 5.1)

最佳答案

我通过运行手动的“pod更新”和Flutter的“软件包获取”来解决此问题...

在终端中将目录更改为:

cd FLUTTER_PROJECT_FOLDER_PATH/ios

运行pod更新:
pod update

运行Flutter Packages获取
// In Android Studio, open 'pub spec.yaml', press 'Packages get'
  • 然后您应该能够构建到iOS
  • 第一次构建比正常花费了大约3分钟的时间,但在随后的构建中恢复了正常。
  • 关于flutter - Cocoapods找不到Pod Firebase的兼容版本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55840883/

    10-15 13:41