On Sat, Feb 9, 2013 at 6:59 PM, [email protected] <[email protected]> wrote: > So now I want to get an MD5 fingerprint, so I run the following command > > keytool -list -alias myAlias -keystore DBAPhoneStalker-release-key.keystore > > After entering my password, the keystore program proceeds to give me an SHA > fingerprint!! I need an MD5 fingerprint. Why is this happening?
It is happening because you are running Java 7, and the keytool command emits SHA-1 by default. Add -v to your command line switches to get an MD5 fingerprint. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 4.5 Available! -- -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en --- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

