I'd like to create an API key for my android app in the Google Developer Console.
Therefore i'll be asked for the sha1-fingerprint of my app. Google suggests me the following command line to get this fingerprint:
keytool -list -v -keystore mystore.keystore
This responded with an error:
$ keytool -list -v -keystore mystore.keystore keytool error: java.lang.Exception: Keystore file does not exist: mystore.keystore
So i try to find any keystore file in my project folder with "find"-command in terminal. Nowhere is a keystore file.
What should i do now?