In a small app I'm making, the user can making multiple entries, they can edit them, delete them, and so on, all of this is using an SQLite database.
Now, I want the user to be able to backup this data online and restore it at any time in the project, I thought of backing it up to a MySQL database online, but it felt too complicated for me, I have very little knowledge in PHP and web programming in general, and even ignoring that, I felt the process I had in mind wouldn't make much sense as the data would all be lumped together and backing up and restoring then would be a huge hassle (At least in the schema I had in mind).
I tried looking at BackupManager from Google to store the data in the cloud, but it didn't work for me for some reason, and I read that this tool is not suitable for backing up files and restoring them immediately.
Is there any other method I can use? All I need is for the user to backup the database he made, restore his and only his, and that's it.