I am trying to add the Google authentication feature to my Android application and for this I need to get the Android Signing SHA-1 certificate. The official tutorial says to use the following command to get the SHA-1 hash value.
In release mode
keytool -exportcert -list -v \-alias <your-key-name> -keystore <path-to-production-keystore>
debug mode
keytool -exportcert -list -v \-alias androiddebugkey -keystore ~/.android/debug.keystore
Now I'm confused about what kind of production repository and debug.keystore are and how to get the path to production-keystore? Explanations are welcome.
source share