Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 787 Bytes

README.md

File metadata and controls

35 lines (26 loc) · 787 Bytes

NascentKit Android

An Android framework that simplifies the creation of beautiful apps.

Installation

  1. Include the jcenter() repository in your module's build.grade file:
repositories {
    jcenter()
}
  1. On Android, sure that you've included Java 8 support for simplified Lambda syntax (requires Android Studio 3+):
android {
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}
  1. Add the NascentKit and RxJava dependencies in your module's build.grade file:
dependencies {
    implementation 'io.reactivex.rxjava2:rxjava:2.2.2'
    implementation 'io.reactivex.rxjava2:rxandroid:2.1.0'
    implementation 'com.nascentdigital:nascentkit:0.1.0'
}