Android: Using Room and Firestore?

So if I understand it well, I shouldn't use it in addition to Firestore?

No and this is beacause Cloud Firestore has offline persistence enabled by default:

For Android and iOS, offline persistence is enabled by default. To disable persistence, set the PersistenceEnabled option to false.

This means that you'll have by default a local copy of your database. So there is no need to add another one.


Basically, when you are developing an app there would be some data that you will want to save into locally and other data that you will want to save on remote database, it's not a bad thing to have both remote and local database.

Some example that I can think of for saving your data remotely is to manage users - when a new user will be created you will want to check if the username is not taken, and you can't do it if this data is only stored locally.

And for using a local database - one of the major advantages in the local database vs remote database its the speed of writing and receiving data.

Here is a nice article on the subject.