Android | Generating Fingerprint from a Keystore(.jks file)

Ibrahim R. Serpici
2 min readMar 19, 2020

--

In this article fingerprint generation from a Keystore(.jks file) will be explained

  1. Open the Terminal and change directory to the where the JDK is installed

2. Run the following keytool command in the bin directory and enter the password for the signature file key. This password was specified when the signature file was created. (Change the path to where .jks file for the application located)

keytool -list -v -keystore D:\AndroidProjects\HMSIntegrationTest\test.jks

3. Obtain the fingerprint from the result

--

--