Is there a nice way to delete all SharedPreferences (= all data from all key to value maps, not just all values from a single map) of my application programmatically on Android? There were similar questions here, but I really want to delete all, not just "OneOfMany", so
SharedPreferences settings = context.getSharedPreferences("OneOfMany", Context.MODE_PRIVATE);
settings.edit().clear().commit();
is not good solution.
And programmatically means that Application manager/My app/Clear data is also not good solution. Any idea?