Google Maps Android Api V2: Failed To Load Map. Could Not Contact Google Servers
Solution 1:
Did you solve the problem? May be this is the problem ->
Wrong service was enabled. Make sure the "Google Maps Android API v2", not "Google Maps API v2" is enabled and re-generate the API key. (https://stackoverflow.com/a/13805807/1300982)
If this is the problem, do not forget to Regenerate the API Key.
Solution 2:
Here's another thing to watch out for: I registered the same SHA1 hash with two different API projects. (Yes, I know this is silly, but I was experimenting with different ways to fix a problem.)
I mention this here, because you may have everything properly configured but you have MORE THAN ONE key for your project on Google's API console. (Here's hoping this silly mistake doesn't happen to you.)
Solution 3:
As this time you are using
<permissionandroid:name="com.example.permission.MAPS_RECEIVE"android:protectionLevel="signature"/><uses-permissionandroid:name="com.example.permission.MAPS_RECEIVE"/>
are you sure that you package name is com.example
, if not then replace com.example
with actual package_name
Solution 4:
I had the same problem. I was using google maps api v1 key. I swithced it with google maps android api v2 key and problem solved.
Solution 5:
Make sure a different key is generated for different applications..
Post a Comment for "Google Maps Android Api V2: Failed To Load Map. Could Not Contact Google Servers"