How to load data from a database in Assets folder
ReActiveAndroid Version: 1.4.3
Bug or Feature Request: How to load data preloaded in a db file in Assets folder
Description: I create a db file with data and when y try to get data i can´t load. Thanks
try this;
https://github.com/ImangazalievM/ReActiveAndroid/issues/44#issuecomment-451101057
create a sqlite database and name it exactly as you defined in AppClass with .db extension. when reactiveandroid initialized it will copy database from asset folder into data directory which is working with. but be aware for any further modification of database file. in that case you should create migration
ReActiveAndroid doesn't support work with a database from assets folder. To do it, you must copy your db file to databases folder manually before ReActiveAndroid have been initialized.