This terminal command solved my problem
[pastacode lang=”markdown” message=”” highlight=”” provider=”manual”]
keytool -list -keystore /PathToYourKeystore/Keystore.keystore
[/pastacode]
Well, almost. With this command I have the SHA1 fingerprint and I need a 16 hexadecimal pairs … SHA1 has more than that. So I need specifically the MD5 fingerprint.
To do that, just add “-v” to that terminal command:
[pastacode lang=”markdown” message=”” highlight=”” provider=”manual”]
keytool -list -keystore /PathToYourKeystore/Keystore.keystore -v
[/pastacode]
Type your Keystore password and you’ll have all fingerprints, including the MD5.