25 lines
516 B
Groovy
25 lines
516 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 {
|
|
compile project(':libraries:core')
|
|
|
|
provided 'com.android.support:appcompat-v7:23.4.0'
|
|
provided 'io.reactivex:rxandroid:1.2.0'
|
|
}
|