5
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.
5
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.
1
You can export the database as sql and put it in the Assets folder. Be careful that the data is not repeated (data in the current database + sql data) in your application.
Here’s a good step by step: http://www.reigndesign.com/blog/using-your-own-sqlite-database-in-android-applications/
Browser other questions tagged android sqlite apk
You are not signed in. Login or sign up in order to post.
It would be nice to at least have a summary of this link here. It can go down and your answer is invalid.
– Maniero
There is also this explanation similar to what Vinicios posted only in Portuguese. Using your own Sqlite database in Android applications
– caezar