Google map not showing after publishing Android app?

friends,

when testing an application on eclipse using google map emulator it displays correctly.

but when I exported the application to publish it.

google map is gone.

Can someone guide me, what mistake am I making?

any help would be assigned.

+4
source share
2 answers

When you export your application for publishing, you probably no longer use the debug storage, but you configure it. (You cannot publish debugging applications on the Market). When you switch to another keystore, you will have to create a new Google Maps API based on this.

+9
source

After project export

  • Step 1: just copy the SHA1 key and get the new API_KEY from the Google Play Developer Console
  • Stet 2: Paste API_KEY into the Android manifest file.
  • Step 3: export the same project again to load your final.apk using the existing keystore
+2
source

Source: https://habr.com/ru/post/1260978/


All Articles