How do I delete SharedPreferences data for my application?
I\'m creating an application that uses a lot of web services to sync data. For testing purposes, I need to
Deleting Android Shared Preferences in one line :-)
context.getSharedPreferences("YOUR_PREFS", 0).edit().clear().commit();
Or apply for non-blocking asynchronous operation:
apply
this.getSharedPreferences("YOUR_PREFS", 0).edit().clear().apply();