Skip to content

Instantly share code, notes, and snippets.

@tspringborg
Last active April 23, 2020 14:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tspringborg/5ba23486768bfd579faf11ef81dd869c to your computer and use it in GitHub Desktop.
Save tspringborg/5ba23486768bfd579faf11ef81dd869c to your computer and use it in GitHub Desktop.
Keyhashes from android keystores
#debug build
keytool -exportcert -alias androiddebugkey -keystore debug.keystore | openssl sha1 -binary | openssl base64
#release build
keytool -exportcert -alias <aliasName> -keystore release.keystore | openssl sha1 -binary | openssl base64
#forgot alias of keystore for release build? run this
keytool -v -list -keystore release.keystore
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment