[Solved] Where to store app data?

I recommend for you the SharedPreferences. This is an in Android simple class, that stores you data in Key-Value sets. Here is the code: SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getApplicationContext()); This initialize your SharedPreferences. If you want to write/change a value, do this: SharedPreferences.Editor editor = sharedPref.edit(); editor.putInt(“KEY_TO_VALUE”, 123); editor.commit(); You also can put in there other … Read more