Reputation: 279
I am using google cloud firestore to store data. There is an option to enable offline persistance. My requirement is to have offline support & also that data should be shown after kill & launch of app.
My Queries:
Link for cloud firestore offline support documentation https://firebase.google.com/docs/firestore/manage-data/enable-offline
Upvotes: 0
Views: 46
Reputation: 317497
Yes, that's how it works. Data written while offline is persistent on the device. That's why it's called "offline persistence".
Yes, that's how it works. It will retry all writes until fully synchronized.
These are things you should be able to try on your own fairly easily.
Upvotes: 0