With JDK 1.7 installed, keytool always outputs by default SHA1 fingerprint, not MD5. You can get the MD5 Certificate by adding -v option.
use the following code :-
1. keytool -v -list -alias androiddebugkey -keystore debug.keystore -storepass android -keypass android
or you can simply use following short command also. It will also outputs same Certificate
2. keytool -v -list -keystore debug.keystore
It will output MD5 Certificate as well.
No comments:
Post a Comment