Setting up Firebase for your Frezka Project
1. We are creating the “Example” sample project.
2. After completing the project, you will be presented with this type of dashboard.
3. Go to the Project Settings and configure the Support Email.
1. On the Firebase console, click the Android icon.
2. Enter Package Name (e.g., com.iqonic.example) and click on register app.
3. After registering the app, you will receive the Google JSON file; download it and save it to the Android folder.
1. Go to Build → Authentication tab and click on Get started.
2. Then select the Email/Password, Google, Apple, and Phone Number one by one and enable them.
3. Re-check if all these 3 modes of authentication are enabled or not.
Obtain Project ID From Firebase
Obtain Firebase Service Account Json file
INFO
If Service Account Json file upload fails due to permission issue or any other reason then,
SHA FINGERPRINT
SHA-1 fingerprint is used as part of the OAuth 2.0 flow to verify the identity of the Android app.
It ensures that only authorized apps can authenticate users and access Firebase Authentication services securely.
SHA-256 fingerprint is used to enhance the security of authentication mechanisms provided by Firebase, such as Google Sign-In or Phone Authentication.
We need SHA1 and SHA256 for variant & config Debug
and Release
WHY SHA IS NEEDED?
SHA (Secure Hash Algorithm) fingerprints are used for authentication and security purposes. When you integrate Firebase services into your Android app, such as Firebase Authentication, Firebase Cloud Messaging (FCM), Firebase Dynamic Links, etc., you need to register your app’s digital fingerprint, typically its SHA-1 or SHA-256 hash, with the Firebase project
Firebase Authentication uses SHA fingerprints to ensure the security of authentication requests. When you register your app with Firebase, you provide its SHA-1 or SHA-256 fingerprint. Firebase uses this fingerprint to authenticate communication between your app and the Firebase backend servers. This helps prevent unauthorized access to Firebase resources and enhances the security of user authentication.
Follow these steps to add a SHA certificate fingerprint for your Firebase Android app initially or if you want to add an additional one:
1. In your Project settings, go to the Apps
2. Select the Firebase Android app to which you want to add a SHA fingerprint
3. Click Add fingerprint.
4. Enter or paste the SHA fingerprint, then click Save.
THERE ARE TWO TYPES OF SHA FINGERPRINT, RELEASE SHA FINGERPRINT, AND DEBUG SHA FINGERPRINT. HERE WE WILL SEE HOW TO GENERATE BOTH TYPES OF SHA FINGERPRINT.
SUCCESSFULL !!
Great! You Have Successfully Configured Firebase!
Notifications