0
0

pod install するとCocoaPods could not find compatible versions for pod "cloud_firestore"となる解消法

Posted at

環境

  • Flutter
Flutter 3.24.0-0.1.pre • channel beta • https://github.com/flutter/flutter.git
Framework • revision b864805a68 (4 days ago) • 2024-07-23 16:06:18 -0700
Engine • revision d89dd85f25
Tools • Dart 3.5.0 (build 3.5.0-323.1.beta) • DevTools 2.37.0
  • yml
dependencies:
  flutter:
    sdk: flutter
  cloud_firestore: ^5.1.0 # 問題のあるversion
  • ios(Simulator)
    ios:15

エラー全文

[!] CocoaPods could not find compatible versions for pod "cloud_firestore":
  In Podfile:
    cloud_firestore (from `.symlinks/plugins/cloud_firestore/ios`)

Specs satisfying the `cloud_firestore (from `.symlinks/plugins/cloud_firestore/ios`)` dependency were found, but they required a higher minimum deployment target.

解消法

dependencies:
  flutter:
    sdk: flutter
  cloud_firestore: ^4.17.5 # 変更

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0