codeerow / spirit

Implementation of MVVM architecture for Android

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Model-View-ViewModel library for android

Spirit is the Android library for easily implementing MVVM architecture. Library based on new Android Architecture Components (ViewModel and LiveData) and RxJava. Inside repo you can find some complicated and not workflows that easily handled with Spirit.

ProGuard

Spirit is completely without reflection! No special ProGuard rules required.

Installation

Gradle is the only supported build configuration.

Step 1. Add the JitPack repository to your build file Add it in your root build.gradle at the end of repositories:

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

Step 2. Add the dependency

dependencies {
        implementation 'com.github.codeerow:spirit:1.3.0'
}

The latest version of Spirit is

About

Implementation of MVVM architecture for Android


Languages

Language:Kotlin 90.3%Language:Java 9.7%