Android Facebook Sdk Keystore Not Asking Or Password
I'm trying to use the Facebook SDK for Android mobile applications. I've in this site: https://developers.facebook.com/docs/mobile/android/build/ that I should get the keystore fro
Solution 1:
Try to check the path again.
I generated the key with the correct path. It was prompted for a password. As a result, I got the key.
Then I generated the key with the wrong path. I got different key.
You can see it in the screenshot.
Solution 2:
Make sure that if your path is wrong:
It will not ask you to enter the password. However, if your path is the right one then it will ask you to enter your password which is "android" so the first key is the right one.
Solution 3:
Make sure the path of debug.keystore is correct i found this file in
C:\Users\Myname\ .android\debug.keystore
once done this make sure to correct path to ssl here is mine:
C:\OpenSSL\bin\openssl
once done both use this comment in your jdk or jre folder in java where key tool file exists
keytool -exportcert -alias androiddebugkey -keystore "C:\Users\ali Roshan\.android\debug.keystore" | "C:\OpenSSL\bin\openssl" sha1 -binary |"C:\OpenSSL\bin\openssl" base64
Post a Comment for "Android Facebook Sdk Keystore Not Asking Or Password"