My use case is a checklist app (Check Off, here's the
Play Store listing). Currently it's just a single-device checklist, because I use writeMap to store the text data file in DirInternal.
My users want to share their checklists across their devices and with other users on other devices (i.e. family members sharing a grocery list), so the master data should move to the cloud, and each device/user can sync with it when they launch the app (if they're connected to the net). So I do need the ability to work both offline and sync when online, hence CloudKVS looks promising.
(I've already added a backup/restore-list feature using the Google Drive API, but for syncing checklists, I'll need item-level updates (you add milk, I add bananas and remove bread).)
I'm hoping I can do a first test
inside my own home network (assuming that this actually makes testing easier because there's no firewall involved).
I assume I could just hardcode a local IP address for the server running on my Windows laptop? (e.g. 192.168.1.XXX)
Anything else I need to look out for?
Thanks again!