Android Question KeyValueStore database import & export

Ganso

Member
Licensed User
Hi.
I'm using KeyValueStore2 for storing configuration data in my project, and it's working great.

I'd like to have the posibility of making backups of the configuration and import them in the same or other devices. CloudKVS would be great, but I don't have a dedicated server to install it.

Does anyone have a clue of a simple way to do this? I'm thinking of using File Provider to share the database, so users can send it the way they prefer, but I've still not tested it.

Thanks in advance.
 

DonManfred

Expert
Licensed User
Longtime User
KVS is a Class. The Source is available. Just look at it for the Databasestructure.

Note that KVS is using a Sqlite db...

Write your backup/restore as needed.
 
Upvote 0
Top