Google map not loading on normal devices but loads

2019-02-16 01:33发布

I have a google map in my android application, i have got the api key in my app from Google api console and it sucessfully loads the map in my test device and to those device with whom i shared the apk file, but after i have published the app on play store, and the user downloads the app, the map does not load. This is how the app looks while functioning normally on a test device. enter image description here

This is how it looks after downloading the app enter image description here

Api console

enter image description here

Am i missing any steps ?

enter image description here

3条回答
你好瞎i
2楼-- · 2019-02-16 02:22

The problem is that you have not added the SHA1 key of your signed apk in your google api console.

Do this-

While creating your signed apk for production copy the new SHA1 key of the signed build.

During the process of signing, output similar to that outlined below will appear within the Console panel:

[2013-06-13 10:34:39 - ReleaseTest] New keystore C:\Users\nas\Documents\AndroidReleaseAPK\ReleaseTest.apk has been created.
[2013-06-13 10:34:39 - ReleaseTest] Certificate fingerprints:
[2013-06-13 10:34:39 - ReleaseTest]   MD5 : FA:65:D--------------
[2013-06-13 10:34:39 - ReleaseTest]   SHA1: D1:E-------------------

or it will also appear on the popup where you will name your build finally before signing it. enter image description here

Use this SHA1 to create new key at api console and include that in your app. The map will load successfully.

Edit:-After you have followed the above procedure, do not right click and run the project again from eclipse, that will make the app to load from its default sha1 key. After you sign the app, manually copy paste the signed .apk to your device. That will make it work.

查看更多
▲ chillily
3楼-- · 2019-02-16 02:28

Someone new drop here can use the followig:

keytool -list -printcert -jarfile app.apk

Add the new SHA1 to api console and map should start showing map and markers.

查看更多
迷人小祖宗
4楼-- · 2019-02-16 02:35

If you have tried other suggestions, note that there are 2 google_maps_api.xml files in your project, under src/debug and under src/release/. Make sure that the latter has a Google Maps API key for your signed APK release to function correctly.

Project file screenshot:

Project file screenshot

查看更多
登录 后发表回答