2020-06-27 18:02:46 +00:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
|
|
|
kotlin("android")
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2021-05-22 20:04:17 +00:00
|
|
|
compileSdkVersion(AndroidConfig.compileSdk)
|
2020-06-27 18:02:46 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2021-05-22 20:04:17 +00:00
|
|
|
minSdkVersion(AndroidConfig.minSdk)
|
|
|
|
targetSdkVersion(AndroidConfig.targetSdk)
|
2020-06-27 18:02:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-05-22 20:04:17 +00:00
|
|
|
compileOnly(Dependencies.kotlin.stdlib)
|
|
|
|
compileOnly(Dependencies.okhttp)
|
|
|
|
compileOnly(Dependencies.jsoup)
|
2020-06-27 18:02:46 +00:00
|
|
|
}
|