Can I use Google Drive as a per user database?
I need private online database storage for each user of my app.
For example, user 1 needs to store entries in a database table with a list of his online meetings.
User 2 also needs to store entries in a similar table. Neither user should be able to see each other's entries.
Google Drive gives developers access to app folder : https://developers.google.com/drive/android/appfolder
The documentation states App Folder can be used to store configuration files, temporary files, or any other types of files that belong to the user but should not be tampered with.
I am happy to create a file-based database which either has a single file to represent a whole database table (in this case all meetings) or one file per row of the database table (a single meeting).
Is this something I can store in Google Drive app folder?
I understand there is a quota in Drive API per app but this seems very high and not prohibitive. Users themselves should have plenty of online storage on Google Drive to store the files I would need. I am looking into Firebase too but Google Drive would be a much cheaper solution and well understood by potential users.