I created a hash key for my Android application using the Facebook SDK. However, now I want to create a hash key for the release version of my application. I use a different keystore for this.
I have the following syntax:
keytool -exportcert -alias MY_ALIAS_HERE -keystore ~/path/to/my/android.keystore | openssl sha1 -binary | openssl base64
Here MY_ALIAS_HERE is an alias present in this keystore file? Or something different? Also, the password is βandroidβ or something else, like the password for this alias in the keystore file?
Thanks a lot..:)
source share