Firebase Realtime Database In Android

Welcome to another post of Firebase series. We have already discussed about Firebase Remote Config, Firebase Authentication and Firebase Crash Report. Today we are going to discuss about Firebase Realtime Database.

As an android developer we always have a feeling that if we need to sync data between more number of users we need :

  • Webservices/API
  • MySQL database
  • Some domain
  • Server to host everything.

With Firebase Realtime Database we can avoid all above things. It is a database hosted on cloud. It is a NoSQL database. You will be allowed to store and sync data in JSON format. Each data will be stored as a JSON. Continue Reading