27 lines
571 B
Groovy
27 lines
571 B
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'me.tatarka.retrolambda'
|
|
|
|
android {
|
|
compileSdkVersion 24
|
|
buildToolsVersion "24.0.3"
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
defaultConfig {
|
|
minSdkVersion 9
|
|
targetSdkVersion 24
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':libraries:core')
|
|
|
|
provided 'com.android.support:appcompat-v7:24.2.1'
|
|
provided 'com.android.support:recyclerview-v7:24.2.1'
|
|
|
|
provided 'io.reactivex:rxandroid:1.2.1'
|
|
}
|