SHA1 Key for DEBUG & RELEASE ANDROID STUDIO MAC , How to generate SHA1 Release Keys in Mac?

android, google-api, macos, release, sha1

Solution

DEBUG:

Click on the Gradle tab on the right hand side of the view.

Go to the ROOT folder -> Tasks -> android -> signingReport

Double click, this will build with the signingReport and post in your bottom view your SHA1.

RELEASE:

In android studio. Build -> Generate Signed APK... and click Next

Copy your key store path and key alias.

Traverse to the "bin" folder of the jdk path present in Java.

Open terminal and enter:

keytool -list -v -keystore "key store path" -alias "key alias"

Enter your key password and this will print out your release SHA1.

Problem

How do I get my SHA1 Keys for debug and release using android studio on a mac? (These are required for Google API Keys)

Original source

Related problems