Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error: The plugin "google_maps_flutter_ios" requires a higher minimum iOS deployment version than your application is targeting?

After update to google_maps_flutter: ^2.6.1 I got this error:

Error: The plugin "google_maps_flutter_ios" requires a higher minimum iOS deployment version than your application is targeting.

like image 306
Abdelrahman Tareq Avatar asked Dec 11 '25 00:12

Abdelrahman Tareq


2 Answers

replace
platform :ios, '12.0'
with 
platform :ios, '14.0'

& change deployment target to 14.0 enter image description here enter image description here

like image 184
Abdelrahman Tareq Avatar answered Dec 13 '25 13:12

Abdelrahman Tareq


Google maps flutter for ios supports IOS 14+

So Update the version in ios/podfile to 14

platform :ios, '14.0'

Run from within ios directory

cd ios
pod install --repo-update
like image 22
Mahesh Jamdade Avatar answered Dec 13 '25 13:12

Mahesh Jamdade