I'm trying to implement the pre-build database concept of couch base in android application. I have a couchdb data that i need to convert to cblite file, so that i can put the file in assets of my application. This will help me to init the application with existing data and reduce the time of launching the app.
Currently I am replicating the data in a test android application -> copying the .cblite file from application databases in device -> pasting it in assets folder of my production app.
The mentioned process is very long and not feasible for me. Is there any other method or Desktop/Browser tool that can be used to convert/export the data to .cblite file directly.
Thanks!