Skip to content

Instantly share code, notes, and snippets.

@DastanIqbal
Last active September 11, 2017 03:49
Show Gist options
  • Save DastanIqbal/d534b39de355ad9c345e11a0dac36640 to your computer and use it in GitHub Desktop.
Save DastanIqbal/d534b39de355ad9c345e11a0dac36640 to your computer and use it in GitHub Desktop.
Generate Key Hash for facebook , apps or for others
# debug or dev
keytool -exportcert -alias androiddebugkey -keystore "debug.keystore" | openssl sha1 -binary | openssl base64
# release or prod
keytool -exportcert -alias <release_alias> -keystore "<release keystore>" | openssl sha1 -binary | openssl base64
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment