0

I'm using Google Map V2 in my app. When I publish my app to tablet on my computer, It does work. But after publish in play market, Map doesn't show.

I had create a lot of new API_KEY on Developer Console but It doesn't work.

I run this code on cmd:

keytool -list -v -keystore C:\Users\mtt\.android\debug.keystore -alias debug

I have debug.keystore:

86:3B:F3:2C:71:2F:B1:94:AC:1B:65:B6:F9:35:23:xx:xx:xx:xx

I added SHA-1 fingerprint and package name in Android Key of My developer console

AndroidManifest.xml:

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

    <receiver
        android:name="com.google.android.gcm.GCMBroadcastReceiver"
        android:permission="com.google.android.c2dm.permission.SEND" >

I read a lot of topic about this problem but no result. Please help me.

1 Answers1

0

Use your production keystore to generate SHA1 that will be used for generating map API key.

More information about it

Bozic Nebojsa
  • 3,606
  • 1
  • 19
  • 17
  • I have created new SHA1 using my keystore : `keytool -list -v -keystore D:\Android\Android_Workspace\Test\test.jks -alias mobileprogram` – mobileprogramming Aug 04 '16 at 08:09