Skip to content Skip to sidebar Skip to footer

How To Get The Sha-1 Fingerprint Certificate In Android Studio For Release Mode?

My google map app works fine on device with debug google map API KEY but when I create signed apk for my app with release google map API KEY, it does not display map. So what is th

Solution 1:

Go in Google Console and Put Sha1 for relese apk

here is how to create sha1 for relese apk

Run This Command in cmd/terminal

keytool -list -v -keystore "your keystore path"

and add new sha1 for your relese apk

Solution 2:

In android studio when you create build for release, in android monitor you signed SHA key is shown.

Second option is using comand prompt cmd. keytool -list -v -keystore ""

Post a Comment for "How To Get The Sha-1 Fingerprint Certificate In Android Studio For Release Mode?"