😸

【Flutter】CocoaPodsの minimum versionがどうとかのエラーがおきた

2023/04/01に公開

発生したこと(多分あるあるエラー)

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のバージョンエラーぽい。最低限のバージョンを満たすようにしろ」ってことらしい。
参考

解決策

    1. ios/Podfile の2行目、# platform :ios, '11.0'のコメントアウトを外してiosの最低プラットフォームversionを有効にする。

→ここで適当に「9.0/10.0」など都度設定しておく。どれがいいかは時と場合によりけり。

    1. /iosディレクトリででpod installを実行すると依存がinstallされる。

バージョンの依存関係のビルドエラーではこの類はあるあるらしく、備忘録とする。byツヨツヨ園児にあ。

GitHubで編集を提案

Discussion