Imran
Imran

Reputation: 25

Cocoapods deployment target issue

I am using cocoapods to update Google maps to updated version 2.5.0. Using pod ‘GoogleMaps’, '~> 2.5.0’ in pod file, but when i install it gives me the mentioned error.

enter image description here

Upvotes: 0

Views: 427

Answers (1)

Sivajee Battina
Sivajee Battina

Reputation: 4174

There is a dependency of the google maps library by two of your other libraries. Those are Google Places, Google Maps/Maps. That's why it's not able to update it. Update all libraries related to google maps will solve your problem.

Use pod update to update all libraries

Upvotes: 1

Related Questions