Generate Keytool on Terminal for Firebase Service Json


First Keytool with filename : debug.keystore
  1. Open terminal
  2. keytool -list -v -keystore ~/.android/debug.keystore -alias "your_alias_name" -storepass "your_store_password" -keypass "your_key_password" (press enter)

Second Keytool with filename : key.jks
  1. Open terminal
  2. keytool -list -v -keystore /Users/macosx/key.jks -alias "your_alias_name" -storepass "your_store_password" -keypass "your_key_password" (press enter)

Summary :
You will get a different result from both of the files.
Those file will generate MD5, SHA1, and SHA256

I think my describe will helpful for you.
Good luck.

Thanks for reading.

Comments