I've created an SQL database programatically with the default way of extending SQLiteOpenHelper and overriding onCreate
. The database is created successfully on the device, and I can insert and retrieve data from it.
Now I need to submit the application to the store. The thing is I need to move the database to assets so it can be loaded to every device containing the application. I have tried the use avd pull to retrieve the database from the device and place it in the assets but data folder retrieved is empty. I cannot recreate the database each time the application is loaded for it takes much time.