vxh.viet
9/1/2016 - 5:36 AM

Getting Android Release Keystore SHA1 Fingerprint

Getting Android Release Keystore SHA1 Fingerprint

Source: Truiton

Question: How to get the SHA1 fingerprint from Android release key?

Answer:

  1. Open terminal.

  2. Change the directory to the JDK bin directory, mine was jdk1.7.0_05 (could be different for you).

cd C:\Program Files\Java\jdk1.7.0_05\bin

  1. Next we have to run the keytool.exe. Use the following line to get the SHA1 fingerprint.

keytool -list -v -keystore {keystore_name} -alias {alias_name}

Example:

keytool -list -v -keystore C:\Users\MG\Desktop\test.jks -alias test

  1. Enter the password, you will get the SHA1 and MD5 fingerprint.