Is it possible to include the application database in the APK installation? I already have all the necessary records for the operation of the application and would like to include it during the installation.
Is it possible to include the application database in the APK installation? I already have all the necessary records for the operation of the application and would like to include it during the installation.
You can export the database as sql and put it in the assets folder. Be careful that the data does not repeat (data in the current database + sql data) in your application.
Here's a nice walkthrough: link