Skip to content

Firebase

Udhayarajan edited this page Mar 7, 2023 · 3 revisions

Realtime database

As the project has an in-app feedback system the data sent from the app is saved in the Realtime Database of Firebase.

Remote Config

Here is the template of the Remote config JSON

{
  "parameters": {
    "change_log": {
      "defaultValue": {
        "value": "***"
      },
      "valueType": "STRING"
    },
    "update_link": {
      "defaultValue": {
        "value": "****"
      },
      "valueType": "STRING"
    },
    "new_version": {
      "defaultValue": {
        "value": "0.0.0"
      },
      "valueType": "STRING"
    },
    "insta_cookies": {
      "defaultValue": {
        "value": "*****YOUR DEFAULT INSTAGRAM COOKIES******"
      },
      "valueType": "STRING"
    },
    "share_message": {
      "defaultValue": {
        "value": "Hey, check out new open source, social media video downloader from"
      },
      "valueType": "STRING"
    },
    "new_code": {
      "defaultValue": {
        "value": "12"
      },
      "description": "version code of upcomming version",
      "valueType": "STRING"
    },
    "share_link": {
      "defaultValue": {
        "value": "*****"
      },
      "valueType": "STRING"
    }
  },
  "version": {
    "versionNumber": "0"
  }
}

FCM

This project uses Firebase Notification messages on of the FCM feature to send notifications while the update is delivered to the APP

Clone this wiki locally