What is SHA1 fingerprint?

后端 未结 6 2584
心在旅途
心在旅途 2021-02-20 00:39

I am obtaining a Google Play API key from Google, and it is asking to enter SHA1 fingerprint. I want to know what is SHA1 fingerprint? I also wanted to know weather this API key

6条回答
  •  故里飘歌
    2021-02-20 01:08

    They are asking for the SHA1 fingerprint on your keystore file (You sign your apps using this before you can push them to google play)

    you can get your key by doing this

    keytool -exportcert -alias your-key-name -keystore /path/to/your/keystore/file -list -v
    

    you can use your keystore file from another computer just put it on a USB stick or email it to yourself (Make sure to keep it private !IMPORTANT!) and point your IDE to the file

提交回复
热议问题