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