Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get the SHA-1 fingerprint certificate in Android Studio 4.2.1

After update Android Studio to version 4.2.1, I can not find the signing report in Grade anymore. Does anyone know where is it or is there another way to get SHA-1 and SHA-256?

enter image description here

like image 207
Leonard Avatar asked Nov 26 '25 07:11

Leonard


1 Answers

At the bottom of editor, there's a terminal, click on it and write the following command:

keytool -exportcert -alias your-key-name -keystore /path/to/your/keystore/file -list -v

There is bunch of lines , look for sha1, that's your sha1 fingerprint

Above command is in single line.

like image 60
adarshjeet shekhar Avatar answered Nov 28 '25 20:11

adarshjeet shekhar