/** Clear all alarms from the Android shared Preferences. */
  public static void unpersistAll() {
    Editor editor = LocalNotification.getSharedPreferences().edit();

    editor.clear();
    editor.commit();
  }