Reputation: 121
I am using firebase Auth for authentication using google, when installed directly to a emulator or via apk it is working as it should. But after publishing it in internal test track of google play it does not go past the signin screen,
I have done all the basic things like adding both SHA1 and SHA 256 fingerprints.
Please help
Upvotes: 5
Views: 1488
Reputation: 1
Delete your existing sha1 keys from both firebase and Google Cloud Credentials and then just add the upload and signing sha1 keys from google play console. This should generate a new google-services.json. Use this to build the app bundle. This worked for me.
Upvotes: 0
Reputation: 11
have you tried to enter the Sha-1 (located in Settings > App Health > App Signatures > App Signing Key Certificate)
Along with the others in your project's firebase configuration, then downloaded GoogleServices.json and generated a new internal test version? It worked here for me, I hope it works
Upvotes: 1
Reputation: 121
Ok, I found the answer myself, google play console makes a new set of fingerprints which can be found in Release < Setup < App Intergrity, replace these in your firebase project settings and it now works as it should!
Upvotes: 7