that_person

Android: Clearing App Preferences (via http://goo.gl/lN6EmT)

Aug 5th, 2014
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.21 KB | None | 0 0
  1. public void clearState() {
  2.     Editor editor = m_prefs.edit();
  3.     editor.remove(PREF_FIRSTRUN);
  4.     editor.remove(PREF_DONE_REV);
  5.     editor.remove(PREF_TODO_REV);
  6.     editor.remove(PREF_NEED_TO_PUSH);
  7.     editor.commit();
  8. }
Add Comment
Please, Sign In to add comment