Google map not loading on normal devices but loads on test device(real device)

前端 未结 3 581
失恋的感觉
失恋的感觉 2021-01-07 12:24

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 devic

相关标签:
3条回答
  • 2021-01-07 12:54

    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.

    0 讨论(0)
  • 2021-01-07 13:07

    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

    0 讨论(0)
  • 2021-01-07 13:14

    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.

    0 讨论(0)
提交回复
热议问题