😸
【Flutter】CocoaPodsの minimum versionがどうとかのエラーがおきた
発生したこと(多分あるあるエラー)
CocoaPods could not find compatible versions for pod "Firebase/Firestore": In snapshot (Podfile.lock): Firebase/Firestore (= 10.3.0)
In Podfile: cloud_firestore (from `.symlinks/plugins/cloud_firestore/ios`) was resolved to 4.5.0, which depends on Firebase/Firestore
(= 10.7.0) Specs satisfying the `Firebase/Firestore (= 10.3.0), Firebase/Firestore (= 10.7.0)` dependency were found, but they
required a higher minimum deployment target
「なんかFirebaseのバージョンエラーぽい。最低限のバージョンを満たすようにしろ」ってことらしい。
参考
解決策
-
- ios/Podfile の2行目、
# platform :ios, '11.0'
のコメントアウトを外してiosの最低プラットフォームversionを有効にする。
- ios/Podfile の2行目、
→ここで適当に「9.0/10.0」など都度設定しておく。どれがいいかは時と場合によりけり。
-
- /iosディレクトリでで
pod install
を実行すると依存がinstallされる。
- /iosディレクトリでで
バージョンの依存関係のビルドエラーではこの類はあるあるらしく、備忘録とする。byツヨツヨ園児にあ。
Discussion