Skip to content

Releases: simplymadeapps/PreferenceHelper

v2.0.2

Choose a tag to compare

@stephenruda stephenruda released this 13 Apr 23:02
24ace6c

Adds clear()

v2.0.1

Choose a tag to compare

@stephenruda stephenruda released this 09 Sep 15:13
e6a37a8

Adds putList() and getList()

v2.0.0

Choose a tag to compare

@stephenruda stephenruda released this 02 Sep 01:09
97269eb

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

v1.3

Choose a tag to compare

@stephenruda stephenruda released this 03 Jun 21:32
1f0a103

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

v1.2

Choose a tag to compare

@stephenruda stephenruda released this 14 May 16:59
d98a401

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

v1.1.1

Choose a tag to compare

@stephenruda stephenruda released this 25 Feb 17:05
b9d5d95

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

Choose a tag to compare

@stephenruda stephenruda released this 24 Feb 18:55
54463f2

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.