to create a signature you need to open openssl on your computer. If you do not have one openssl download from here (http://code.google.com/p/openssl-for-windows/downloads/list)
- In C :, create openssl folder
- extract the contents of the downloaded openssl zip file to the openssl folder in the C folder:
- copy openssl content to jdk1.6.0 \ bin folder
- open command line
- move to bin from jdk1.6.0 \ bin. can be done using .. cd "your jdk1.6.0 bin directory" run the following command to generate your keyboard. When generating a hashkey, it should set you a password.
keytool -exportcert -alias androiddebugkey -keystore "C:\Users\Arsalan.android\debug.keystore" | openssl sha1 -binary | openssl base64
NOTE: in the code above, note that you need to specify your path to the user (for example, this is C: \ Users \ Arsalan, you just need to change it for your user account.
Give password like android
. If it does not ask for a password, your path to the keystore is incorrect.
source share