batuman
batuman

Reputation: 7304

Google Map is not loaded for the app downloaded from the Play Store

I use Google Map in my app. When I install the app from my pc using Eclipse, the Google Map is loaded properly. Now I uploaded the app to the Google Play Store for distribution. For the app installed from the Play Store, Google Map is not loaded. What is wrong or which step am I missing?

EDIT 1: Now I get the SHA1 fingerprint from the release keystore. Then I go to the Google APIs Console and using exiting project and that fingerprint, I created new Android API Key. That new API key is replaced with my old debug API Key and then I export a new apk again. That apk is uploaded to the play store. It looks I followed all required steps. But still, the map is not loaded and only white color background appeared. Same thing happened at these links, but no description of how they solve the problem. link

Upvotes: 3

Views: 2621

Answers (1)

Jayasagar
Jayasagar

Reputation: 2066

Try to do following

  • Please cross verify package name both in API console and in manifest file.
  • Please cross verify API key in both API console and in manifest file.
  • Sign the unsigned APK using release keystore

Before uploading to play store,

  • Install it whether it displays Map. It should display map, once it works then only upload APK play store.

Note: Some time you have to UNINSTALL app which is already installed in device and try to re install new APK, it should work :).

Upvotes: 5

Related Questions