Reputation: 25
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.
Upvotes: 0
Views: 427
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