flutter CocoaPodsのエラー解決策

flutter CocoaPodsのエラー解決策

flutter run -d iPhoneで、
Error running pod install
発生。

んで、$ pod install
すると、↓こんな感じのエラーでビルドできない件。

---
[!] CocoaPods could not find compatible versions for pod "BSImagePicker":
  In snapshot (Podfile.lock):
    BSImagePicker (= 2.9.0, ~> 2.9.0)

  In Podfile:
    multi_image_picker (from `.symlinks/plugins/multi_image_picker/ios`) was resolved to 4.3.2, which depends on
      BSImagePicker (~> 2.10.0)

It seems like you've changed the constraints of dependency `BSImagePicker` inside your development pod `multi_image_picker`.
You should run `pod update BSImagePicker` to apply changes you've made.
---

そう、`pod update BSImagePicker`って書いてるし、

pod update BSImagePicker

を実行したり、

pod install

してみたがビルドはうまくいかず。。。

色々やってみたが、↓のエラー。(2.10.0にアップデートはできていたよう)

Specs satisfying the `BSImagePicker (~> 2.10.0)` dependency were found, but they required a higher minimum deployment target.

ん、まてよ。
required a higher minimum deployment targetか!!!
BSImagePicker の deployment target を↓のように変更してみた。

xcodeを起動
[info]の”deployment target”を
8.0 から 9.0 に変更。

でもう一回

pod install

OKうまくいった!!

で、お決まりのflutterd run

flutter run -d iPhone

大成功!

エラー内容よく読んでねということでした。