By following these steps you can be able to generate MD5 and SHA1 fingerprint for your android application using command prompt.(It will surely work in windows7)
First of all you need to get the paths for keytool and keystore.
keytool you can find in the bin folder of the jdk version you are using i.e. in my case it is
Now open the command prompt and type a command in a following way :-
C:>"path of the keytool.exe" -v -list -keystore "path of the keystore"
Press enter , it will ask you to enter the password. Now if used the android debug.keystore the password will be android and if you used application app.keystore the password will be the same you have entered while creating your keystore.
As soon as you enter the password both the fingerprints i.e. MD5 and SHA1 will appear on your screen with in couple of seconds.
0 Comment(s)