I have an app released on the android market which uses sqlite and displays data. I want to know if I am sending an update for the app by adding features, should I upload a new database? What happens when users already having my app, click on update? Will the database update on its own? If the users are downloading my app for the first time, they will certainly get the new db content…but what about the existing users?? I want to know if I have to explicitly update the database in the program
Share
When you create your new version… If you change the version of the database… The onUpgrade function will run on all the existing users: