2020-06-27 18:02:46 +00:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
|
|
|
kotlin("android")
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2020-12-11 14:41:48 +00:00
|
|
|
compileSdkVersion(Config.compileSdk)
|
|
|
|
buildToolsVersion(Config.buildTools)
|
2020-06-27 18:02:46 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2020-12-11 14:41:48 +00:00
|
|
|
minSdkVersion(Config.minSdk)
|
|
|
|
targetSdkVersion(Config.targetSdk)
|
2020-06-27 18:02:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compileOnly(Deps.kotlin.stdlib)
|
|
|
|
compileOnly(Deps.okhttp)
|
|
|
|
}
|