If you are using Android Studio, you can get the SHA1SHA-1 and MD5 certificate fingerprint (debug, release... all Build Types!!) fast through Gradle Tasks:
signingReport
The SHA1SHA-1 and MD5 certificates are shown in Messages Logs.
Android Plugin (configured in the Gradle app) creates a debug mode for default.
com.android.application
File route to keystore:
HOME/.android/debug.keystore I recommend to attach debug.keystore to build.gradle. To do this put a file, debug.keystore, in an app folder and then Add SigningConfigs in Gradle app:
apply plugin: 'com.android.application' android { ................ signingConfigs { debug { storeFile file("../app/debug.keystore") storePassword "android" keyAlias "androiddebugkey" keyPassword "android" } release { storeFile file("../app/debug.keystore") storePassword "android" keyAlias "androiddebugkey" keyPassword "android" } } ........ } Extra: If you want creates for release, put a file, release.keystore, in an app folder. (This example uses the same debug.keystore.)