Reputation: 1994
I have a standalone android app that stores user data in the device. I have this idea to sync the database file with user's google drive account. In this way user can access the same data from multiple devices.
Any ideas will be highly appreciated.
Upvotes: 1
Views: 951
Reputation: 22306
My 2c is this is a risky approach. You're relying on Sqlite not storing instance specific data in the database file and there is no write-conflict checking. I would look at something like
which are all designed for that specific purpose.
Upvotes: 1