Android: where to run keytool command in android
Keytool command can be run at your dos command prompt, if JRE has been set in your classpath variable.
For example, if you want to get the MD5 Fingerprint of the SDK Debug Certificate for android,
just run the following command...
C:\Documents and Settings\user\.android> keytool -list -alias androiddebugkey
-keystore debug.keystore -storepass android -keypass android
For example, if you want to get the MD5 Fingerprint of the SDK Debug Certificate for android,
just run the following command...
C:\Documents and Settings\user\.android> keytool -list -alias androiddebugkey
-keystore debug.keystore -storepass android -keypass android
where C:\Documents and Settings\user\.android> is the path which consist the debug.keystore that has to be certified.
For detailed information, please visit http://code.google.com/android/add-ons/google-apis/mapkey.html#getdebugfingerprint
Comments
Post a Comment