Showing posts with label keystore. Show all posts
Showing posts with label keystore. Show all posts

October 12, 2012

[SOLVED] Android. Get Signing certificate fingerprint (SHA1)

While creating the Client ID in the Google APIs Console you will be asked for
"Signing certificate fingerprint (SHA1):"

to obtain this fingerprint just run:
keytool -list -alias temp -keystore /path/to/your/keystore_file
you will be asked fot password and the Certificate fingerprint (SHA1) will be shown


"keytool comes with the Java SDK. You should find it in the directory that contains javac, etc."
via http://stackoverflow.com/a/2998451/47399