I have this DB on my server
{“db_name”:“my_data_base”,“doc_count”:23041,“doc_del_count”:374415,“update_seq”:808032,“purge_seq”:0,“compact_running”:false,“disk_size”:376004731,“data_size”:171911115,“instance_start_time”:“1495490678530797”,“disk_format_version”:6,“committed_update_seq”:808032}
All that data is syncronized the first time that the app is launched. The problem that I have is that frequently (for test reason) I have to reinstall the app (clean reinstallation) so I have to wait more or less 2 hours in order to syncronized the app with the data.I wonder if there is a way to syncronized in local with all the data that I have in my DB as a JSON, I mean:
1.-Create a big JSON with all the data I have in the database
2.- Attach that JSON in local in android
3.- Load the data
Is that possible?
Thanks a lot in advanced