I found a very easy process to find you MD5, SHA-1 fingerprint using Android Studio.
- Run your project
- Go to Gradle Menu (Menu: View -> Tool Windows -> Gradle)
- Go to 'signingReport' in Gradle window. (Your project -> Tasks -> android -> signingReport)
- Run it. (Using double-click or Ctrl + Shift + F10)
- In Run window you will find all info.
It's work only for debug mode. In realease mode I found a very easy processcan not see sha-1. Here result of gradlew signingReport
Variant: release Config: none ---------- Variant: releaseUnitTest Config: none ---------- Variant: debug Config: debug Store: path\Android\avd\.android\debug.keystore Alias: AndroidDebugKey MD5: xx:xx:xx:62:86:B7:9C:BC:FB:AD:C8:C6:64:69:xx:xx SHA1: xx:xx:xx:xx:0F:B0:82:86:1D:14:0D:AF:67:99:58:1A:01:xx:xx:xx Valid until: Friday, July 19, 2047 ---------- So I must use keytool to find you MD5, SHAget sha-1 fingerprint using Android Studio. Here official Firebase doc:
- Run your project
- Go to Gradle Menu (Menu: View -> Tool Windows -> Gradle)
- Go to 'signingReport' in Gradle window. (Your project -> Tasks -> android -> signingReport)
- Run it. (Using double-click or Ctrl + Shift + F10)
- In Run window you will find all info.