juanmc2005 / rxstorage

Android SharedPreferences wrapper that works with RxJava 2 through a simple annotation api

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RxStorage

Release

Android SharedPreferences wrapper that works with RxJava 2 through a simple annotation api

Installation

Add jitpack as a repository in your top-level build.gradle file

allprojects {
    repositories {
        jcenter()
        maven { url "https://jitpack.io" }
    }
}

Add the RxStorage dependency and annotation processor to your module-level build.gradle file

dependencies {
    ...
    compile 'com.github.devsar.rxstorage:rxstorage-lib:x.y.z'
    annotationProcessor 'com.github.devsar.rxstorage:rxstorage-processor:x.y.z'
    ...
}

About

Android SharedPreferences wrapper that works with RxJava 2 through a simple annotation api

License:Apache License 2.0


Languages

Language:Java 100.0%