Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Maps API V2 'Failed to Load Map. Could not contact Google Servers'

Tags:

I have checked and double checked my APIkey that I registered on the Google Console however I am still getting the following error:

12-05 16:31:12.940: E/Google Maps Android API(12334): Failed to load map.  Could not contact Google servers. 

What I am seeing is the zoom in/out buttons and the background for the MapView but no Map???!!!

Any ideas???

Answer

I will post it here because what solved my issue was stated in the comments of the accepted answer below.

It was the READ_GSERVICES permission. For some reason the permission wasn't mentioned on the developer site when it came to using them.

like image 667
StuStirling Avatar asked Dec 05 '12 16:12

StuStirling


2 Answers

For setting up Google Maps API v2 on Android, make sure that you have completed all of the following steps.

App Key For API Access

When Google asks for the SHA1 fingerprint of your app certificate, you will want most likely want to run this twice, once for your debuging certificate, and once for your publishing certificate.

keytool -list -v -keystore publishcert.keystore
keytool -list -v -keystore ~/.android/debug.keystore

The fingerprint of the app on the market is different then the fingerprint of an app that you are just testing!

Enable the service on the Google API Console

Login to the Google API Console.
On the services page, find Google Maps Android API v2.

Note - Google Maps API v2 is DIFFERENT then Google Maps Android API v2

In the API Access tab, click Create new Android Key

Add your certificate signatures for access to the APIs.

yourrelease-fingerprint;com.example.project.package
yourdebug-fingerprint;com.example.project.package

You will be provided with a generated API Access Key.

You may need to first create an API Project in the API Console

Amend the App Manifest

Add your API Key, inside of the <application> element.

<meta-data     android:name="com.google.android.maps.v2.API_KEY"     android:value="yourapikey"/> 

Add the following permissions:

<permission         android:name="com.example.project.package.permission.MAPS_RECEIVE"         android:protectionLevel="signature"/>  <uses-permission android:name="com.example.project.package.permission.MAPS_RECEIVE"/>  <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/> 

Add the following feature request:

<uses-feature     android:glEsVersion="0x00020000"     android:required="true" /> 
like image 108
Matt Clark Avatar answered Sep 20 '22 17:09

Matt Clark


Make sure all below mentioned points are taken care:

1) 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.

2) Add the following elements to your manifest. Replace com.example.mapdemo with the package name of your application.

3) Use of correct certificate and key. Release certificate, which WILL NOT WORK during debugging when you run the app on my phone. You have to use the debugging keystore certificate fingerprint instead.

like image 27
Monika Avatar answered Sep 16 '22 17:09

Monika