Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How does Ionic/Cordova generate hash key?

I'm working on adding Facebook API integration with ionic/Cordova and am trying to find the debug hash key that is generated for my app when I do:

ionic build android

I know that it generates a new .keystore file at /userhomedir/.android/debug.keystore. But what does it set as the alias and password? And how can I retrieve this hash key after Cordova has created it for my app. I don't see the hash key being printed anywhere during the build process.

I need the generated hash key to give to Facebook API to use their sign on SDK

like image 263
monokh Avatar asked Oct 02 '15 21:10

monokh


2 Answers

One answer that worked for me is this one:

  • Copy the apkname.apk file you want to know the hash of to the 'Java\jdk1.7.0_79\bin' folder
  • Run this command keytool -list -printcert -jarfile apkname.apk
  • Copy the SHA1 value and convert it using this site
  • Use the converted Keyhash value (ex. zaHqo1xcaPv6CmvlWnJk3SaNRIQ=)
like image 185
Muhammad Omar ElShourbagy Avatar answered Oct 12 '22 01:10

Muhammad Omar ElShourbagy


It seems Cordova use ~/android/debug.keystore with the password android

To get it :

keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore | openssl sha1 -binary | openssl base64

With password : android

like image 41
Nicolas Janel Avatar answered Oct 12 '22 02:10

Nicolas Janel