24 lines
586 B
Groovy
24 lines
586 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion versions.compileSdk
|
|
|
|
defaultConfig {
|
|
minSdkVersion versions.minSdk
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api project(":storable")
|
|
api 'net.danlew:android.joda:2.9.9.4'
|
|
|
|
implementation "com.android.support:support-annotations:$versions.supportLibrary"
|
|
implementation "com.squareup.retrofit2:retrofit:$versions.retrofit"
|
|
implementation 'ru.touchin:logansquare:1.4.3'
|
|
}
|