Home > other >  Why SHA1 and SHA256 are not matching with my app package name?
Why SHA1 and SHA256 are not matching with my app package name?

Time:12-05

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 fire app worked Fire 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

CodePudding user response:

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.

CodePudding user response:

Run Task :app:signingReport for Release variant you will get unique key.

  • Related