Example #1
0
 public void writeBoolean(String key, Boolean val) {
   SaveUtils save = new SaveUtils(EpiTime.getInstance().getCurrentActivity());
   save.putBoolean(TAG + key, val);
   save.commit();
   this.booleanConfigs.put(key, val);
 }