I cannot link my android app project with firebase console. Because every time when I create a new project and generate an SHA-1 key, it generates same key for every project. I stuck in it and didn't find an answer. Please Help me
Asked
Active
Viewed 2,694 times
1 Answers
3
I think you are doing mistake while generating the SHA-1 Key, as we know there already located debug.keystore for default keystore use, so when ever you fire the code for SHA-1 then there default keystore (debug.keystore) will use.
so may be due to this reason you have every time same SHA-1.
Please follow this link, here describe how to find the SHA-1 using Android Studio also inside android studio.

TejaDroid
- 6,561
- 4
- 31
- 38
-
I did the same as described in the link but all in vain :( – danyRoyal Feb 12 '18 at 11:06
-
6i got the solution TejaDroid :) I delete the debugkeystore from my "users/.android/" then i rebuild the project again and now a new SHA1 key has been generated <3 – danyRoyal Feb 12 '18 at 11:11
-
This comment should be the solution. Thank you @danyRoyal – Simran Sharma Aug 06 '21 at 01:31