Hi,
I want to make a quiz application. The replies are saved in a SQLite database. How can I ensure that the reinstallation of the application will not delete the database with existing responses? What is the best approach?
Thank you
You app can not use a DB inside your assets (files folder). So you ARE copying the db to another place.
If you deinstall the app the file is still at this place
If you run your new app you should check if the file is already there and if yes you use it.