TinyDB--Android-Shared-Preferences-Turbo
TinyDB--Android-Shared-Preferences-Turbo copied to clipboard
This class simplifies calls to SharedPreferences in a line of code. It can also do more like: saving a list of Strings, ints, and saving images. All in 1 line of code!
Results
21
TinyDB--Android-Shared-Preferences-Turbo issues
Sort by
recently updated
recently updated
newest added
fun insertFood(item: FoodDomain){ listFood = tinyDB.getListObject("CartList") listFood.add(item) tinyDB.putListObject("CartList",listFood) var fod : FoodDomain = listFood.get(0) } The error is: when i get the list, it have size, 1 or 2 or...