skip to Main Content

I am working on Two different flutter projects and i am trying to authentication my apps using Firebase phone number authentication method, and one of the requirement is to add a SHA1 AND SHA256 fingerprint, So here is issue i am facing, when i try generate a fingerprint certificates a (SHA1 AND SHA256) i just get the same key for bother app, i am just asking myself why i am getting the same key with the different project?

And The big issue is that When i configured them on Firebase console, my first app worked fine and the other not,

Basically i am using the same (SHA1 AND SHA256) for both app

1: I need help, why the (SHA1 AND SHA256) are the same when generated on different projects
2: How can i get a unique (SHA1 AND SHA256) for an individual app:

I tried to add a (SHA1 AND SHA256) first app it did well for sure

But the second gave me an error message of

enter image description here

2

Answers


  1. Since it is a debug keys, it remain same for all apps run in your system. Once you upload your app on playstore, there you will find release SHA1 and SHA-256 keys which will be unique for all apps.

    Login or Signup to reply.
  2. Run Task :app:signingReport for Release variant you will get unique key.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search