I am trying to implement Firebase in my Android Studio application and since I want to use Firebase Auth I need the SHA-1 signature certificate, and to get it I need to execute this code in the CMD:
keytool -exportcert -list -v \
-alias androiddebugkey -keystore %USERPROFILE%\.android\debug.keystore
But I get it: "keytool" is not recognized as an internal or external command, program or batch file executable. And that already try doing cd in the .android folder and java is already in the path and already add the variable JAVA_HOME.
What do I do?