I'm currently busy building a ionic app
. I am busy with facebook login
and for me to register
my app on the facebook developers dashboard
i need to give info on the app.
One of them are that i need to generate a hash key
. to do that i need to run the following command from within my java/bin
keytool -list -v -keystore "%USERPROFILE%\.android\debug.keystore" -alias androiddebugkey -storepass android -keypass android
then i get this error when i do that
keytool error: java.lang.Exception: Keystore file does not exist: C:\Users\Reyno.android\debug.keystore
this basically means the file isnt there right.
So my question is how can i generate a new one without installing android studio
. I know it wil generate a new one if i install android studio
.
ref: Where is debug.keystore in Android Studio
Thanks in advance