Which database should I use for the Android app?

We started making an application similar to blablacar in terms of functionality. The question arose, which database to use?!

There is a firebase option, but there are restrictions on users. There is a suggestion to use firestore, but there are also restrictions. Next in line is SQLite, but is it suitable for such an application?!

Author: Suvitruf - Andrei Apanasik, 2020-01-26

1 answers

Alternatively, you can use your own server, and deploy an API on it, through which you will access your database. For example, this can be implemented in python using Django + Django REST framework. Django out of the box has the ability to work with SQLite. In the future, it can also be used for the web version of your service, if such is planned.

 0
Author: Vlad Antonov, 2020-01-29 11:52:19