DEV Community

Cover image for Steps to get the SHA1/SHA256 key for windows users | Firebase/Google Play Games in Unity
Harindu Fonseka
Harindu Fonseka

Posted on • Updated on

Steps to get the SHA1/SHA256 key for windows users | Firebase/Google Play Games in Unity

I saw a lot of people came into trouble about how to get the SHA1 key after watching the (Getting started with Firebase in Unity (2019) - Firecasts) youtube video

here is the quick process I did to get the SHA1 key

open CMD and navigate into the .android folder by typing

cd .android

cmd screenshot

after that type

keytool -exportcert -keystore debug.keystore -list -v

cmd screenshot

and hit enter. it will ask you about the Keystore password
your password is:

android

type android and hit enter (note: it's not showing the typing indicator at this point untill you type the password and hit enter)

that's it 🎉

cmd screenshot

now you can see the SHA1 Key

Top comments (0)