Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get MD5 from debug.keystore file?

Tags:

android

I use some command to get MD5 private key from debug.keystore file but actually I get SHA1 private key instead of MD5. I do not know how to get MD5.

This is command that I use.

keytool -list -alias androiddebugkey -keystore (path_to_debug_keystore).keystore -storepass android -keypass android 
like image 344
Mojiiz Avatar asked Mar 10 '11 16:03

Mojiiz


People also ask

How do I open a debug keystore?

After clicking on the app, Navigate to Tasks. Inside Tasks, navigate to “android” and double click on the signing report option. After clicking on this option you will get to see the path for your debug. keystore file.

What is debug keystore file?

A debug keystore which is used to sign an Android app during development needs a specific alias and password combination as dictated by Google. To create a debug keystore, use: $ keytool -genkey -v -keystore debug.

How do I download a keystore file?

Download source url: Set the generated keystore URL you get when you upload your file to the ANDROID KEYSTORE FILE section of the Code Signing tab). Download destination path: Set the location of the keystore file as a relative path. This path should be the same as the keystore path already defined in your build.


1 Answers

Try to simply add a -v to your command. Then you will get fingerprints in MD5, SHA1 and SHA256. The MD5 one should be accepted by Google API Signup. =)

like image 56
rafaelrezend Avatar answered Sep 23 '22 09:09

rafaelrezend