23 lines
479 B
Groovy
23 lines
479 B
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'me.tatarka.retrolambda'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "23.0.3"
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
defaultConfig {
|
|
minSdkVersion 9
|
|
targetSdkVersion 23
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
provided 'com.android.support:support-annotations:23.3.0'
|
|
provided 'io.reactivex:rxandroid:1.1.0'
|
|
}
|