I am working on an app that involves a lot of sqlite database functions and sharedpreferences...
I would like to ask whether the sharedpreferences and sqlite data will be kept if the user updates the app through the Google Play?
I am working on an app that involves a lot of sqlite database functions and sharedpreferences...
I would like to ask whether the sharedpreferences and sqlite data will be kept if the user updates the app through the Google Play?
All SharedPreferences
and databases are kept upon update. Your database will be upgraded if you change the database version on your SQLite helper class.
Yes, the application settings and any private application files (like SQLite databases) are kept when the user updates the application. They are only removed when the app is explicitly uninstalled.