prefser icon indicating copy to clipboard operation
prefser copied to clipboard

Wrapper for Android SharedPreferences with object serialization and RxJava Observables

Results 12 prefser issues
Sort by recently updated
recently updated
newest added

Bumps gradle from 3.6.3 to 4.0.1. [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=com.android.tools.build:gradle&package-manager=gradle&previous-version=3.6.3&new-version=4.0.1)](https://dependabot.com/compatibility-score/?dependency-name=com.android.tools.build:gradle&package-manager=gradle&previous-version=3.6.3&new-version=4.0.1) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

I have getting error while fetching boolean value in kotlin ` val isAutoStart : Boolean? = PrefInstance.get(context)?.get(Constants.PREF_SERVICE_IS_ALERT,Boolean::class.java ,false) ` Error Log java.lang.ClassCastException: java.lang.Boolean cannot be cast to java.lang.String at android.app.SharedPreferencesImpl.getString(SharedPreferencesImpl.java:225)...

Add methods for saving data returning RxJava Completable type. This functionality was requested in #127. It could be done by implementing `put(...)` and `observe(...)` methods under the hood. `Observable` type...

enhancement
feature request

It should be done after resolving #100. References: - http://www.baeldung.com/jackson-object-mapper-tutorial

enhancement

question
feature request
discussion

We can use docsify for that.

documentation

Passing null as default value in `get` gives a `NullPointerException` when the key is already signed for primitive types. From my study of the code I see that it was...

It should be done after resolving #100.

enhancement

While I know the types of data Prefser can store, I've tried to store a `LinearLayout` data type. The app hangs and does an infinite loop inside `Gson.java` on line...