Skip to content

Releases: simplymadeapps/PreferenceHelper

v2.0.2

13 Apr 23:02
24ace6c

Choose a tag to compare

Adds clear()

v2.0.1

09 Sep 15:13
e6a37a8

Choose a tag to compare

Adds putList() and getList()

v2.0.0

02 Sep 01:09
97269eb

Choose a tag to compare

Allows for storage of non-primitive, custom objects using JSON serialization and deserialization.

v1.3

03 Jun 21:32
1f0a103

Choose a tag to compare

Adds the PreferenceHelper.remove(String key) method for clearing a value from storage.

v1.2

14 May 16:59
d98a401

Choose a tag to compare

New PreferenceHelper.contains(String key) method for checking if a value has been stored for the given key.

v1.1.1

25 Feb 17:05
b9d5d95

Choose a tag to compare

Change 'com.android.support:support-annotations:28.0.0' to use compileOnly instead of implementation because we don't need it to be imported at the app level.

v1.1 - Add a third parameter to specify object type

24 Feb 18:55
54463f2

Choose a tag to compare

Allows for null objects to be stored if you specify the type of object. For example, put("key", null, String.class) will know to store a null string.