Home > other >  Which SHA1 fingerprints should i use in my Firebase projects?
Which SHA1 fingerprints should i use in my Firebase projects?

Time:12-29

I have an app in google play console, that uses two Firebase projects(one in open testing and another one is for production), and i've added API keys restriction in Google cloud. But i don't understand which SHA1 fingerprints i should add too my Firebase projects.

CodePudding user response:

I found this guide on how to add a SHA fingerprint to a Firebase Android app.
Following the link in the 1st step I found this documentation, which explains how to get the SHA-1 from the Google Play Console and also how to self-sign your application.

Additionally I found this similar question which accepted answer seems to explain how to self-sign your application using Gradle's Signing Report

  • Related