Last active
September 11, 2017 03:49
-
-
Save DastanIqbal/d534b39de355ad9c345e11a0dac36640 to your computer and use it in GitHub Desktop.
Generate Key Hash for facebook , apps or for others
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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