I'm looking for a way to sync a database and photos between devices via Dropbox. The goal is that multiple devices can add deletion and update data and photos.
I was thinking about exporting a .db file, but it would be difficult to update, I think it would rather overwrite the previous file. Perhaps working with CSV is a good approach, because the application will actually read and compare before updating its database and files.
The application will have something like a sync button or something that triggers a sync.
I know that it would be correct to use my own SQL server, but I would prefer to avoid this.
Any ideas?
source share