0

GoogleSignInAccount not work after generate signed apk but when I connected my phone to device and run, GoogleSignInAccount Works normally.

What error that is happening?

wahba
  • 1
  • 4

1 Answers1

1

You need to use release SHA1 fingerprint. You can get it using

keytool -list -v -keystore {keystore_name} -alias {alias_name}

example:

keytool -list -v -keystore C:\Users\MG\Desktop\test.jks -alias test

After that, add it to your firebase project

Setting > SHA certificate fingerprints

Momen Zaqout
  • 1,508
  • 1
  • 16
  • 17