SharedPrefsUtils-ktx:
Save and load objects from SharedPreferences in a faster and simpler way with Kotlin Extensions.
This project is a "Kotlin extensions" version of SharedPrefsUtils
Version 1.x
- September, 2019 - Kotlin version
Getting started
The first step is to include SharedPrefsUtils-ktx into your project, for example, as a Gradle compile dependency:
Sample usage
Get a hold of SharedPreferences
instance to use the extensions put
and get
:
To save and load primitive types:
To save and load object types:
When not using primitive types you should use TypeToken
instead of T::class.java
, for example:
Both tests will ran to completion.
Regarding assertNotEquals(list, prefs.get("key", List::class.java, ArrayList<Int>()))
being true, I guess it's related with the fact that public <T> T fromJson(JsonReader reader, Type typeOfT){}
method from Gson.java
(line 886) is type unsafe:
"Since Type is not parameterized by T, this method is type unsafe and should be used carefully".
That's why I believe I'm getting List<Double>
instead of List<Integer>
.
Also:
Will throw JsonParseException
.
Binaries
Additional binaries and dependency information for can be found at https://search.maven.org.
Dependencies
Bugs and Feedback
For bugs, questions and discussions please use the Github Issues.