0

I am trying to connect Firebase to my Login Page in Flutter, but I cannot connect because of the following errors:

 Ignoring header X-Firebase-Locale because its value was null.

Notifying id token listeners about user ( e3OIktY1XafU7ddf5yMgALiA69c2 ).

What does it mean and How can I fix this? Appreciate if someone can advise. Thank you in advance!

annyeongk
  • 19
  • 1
  • 7

1 Answers1

0

Go to the project folder in the terminal.

run this comands and it will give you SHA-1 for debug and release. you will take that and add in user and permission in firebase console in the project. finally rebuild the project again

for Mac: keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey -storepass android -keypass android

for Windows: keytool -list -v -keystore "\.android\debug.keystore" -alias androiddebugkey -storepass android -keypass android

for Linux: keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey -storepass android -keypass android

brook yonas
  • 436
  • 3
  • 14