skip to Main Content

I have runed pod install in vs code terminal but I’m receiving this error :

[!] CocoaPods could not find compatible versions for pod "GoogleMaps":
In Podfile:
google_maps_flutter_ios (from .symlinks/plugins/google_maps_flutter_ios/ios) was resolved to 0.0.1, which depends on
GoogleMaps (< 9.0, >= 8.4)

Specs satisfying the GoogleMaps (< 9.0, >= 8.4) dependency were found, but they required a higher minimum deployment target.

Please can anyone help me ?

I have runed pod install in vs code terminal but I’m receiving this error :

2

Answers


  1. Chosen as BEST ANSWER

    It helped thanks, I set it to 14.0


  2. You can do following.
    1.delete podfile.lock and in your iOS directory run pod install –repo-update
    2.if it does not help find # platform :ios, ‘12.0’ this line in your Podfile and uncomment it , set it to 13.0 and do 1 step

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search