I have gone through the documentation and code for sample app, and figured out that files/objectbox/objectbox/data.mdb is the default file where all data is stored.
Assuming my understanding is correct, I have a couple of questions that I couldn't find documentation on:
- I want to have a backup/restore functionality in my Android app. Assuming I use native SQLite DB, I know I can upload the .sqlite file to cloud, and then download it on the same (or even a different) device to restore it. Can the same be done with data.mdb file?
- How about lock.mdb? Do I need to copy\upload it along with data.mdb?