Bhavin Chauhan
Bhavin Chauhan

Reputation: 2010

android google map issue with google-play-services_lib

I created one android application I followed all the steps to make API keys and intalled google play services from Android SDK Manager. I read so many blogs for integartion google map, I Import the libraty project to my worksapce from "\adt-bundle-windows-x86\sdk\extras\google\google_play_services\libproject\google-play-services_lib" path. when I tried to add library project from project's property window in android tab I got following out put enter image description here But when I check this library second time than I got following out put in android tab enter image description here I have proble of libraty project. I used eclipse IDE. I got some solution but for different IDE , so suggest me for best solution..

Upvotes: 0

Views: 396

Answers (2)

Emil Adz
Emil Adz

Reputation: 41099

The first problem usually happens when the path to the library is too long, the solution would be to move the google-play-services lib to a place where it path would be shorter and then try to reference it again.

your second problem:

"Google Maps Android API(23127): Failed to load map. Could not contact Google servers."

caused usually when there is a problem with your API key or a problem with the permissions you have defined in the manifest file, take a look a this post I wrote and go over all the steps to generate the key:

Google Map API key

Next, check steps 5-7 and verify you defined the right permissions:

Google Map API V2

Upvotes: 2

Sridharcorby
Sridharcorby

Reputation: 47

Sometimes it may happen, you should remove and add the same library again or restart the eclipse and add the library

Upvotes: -1

Related Questions