2019-05-23 21:45:35 +00:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 27
|
2019-12-26 17:52:26 +00:00
|
|
|
buildToolsVersion '29.0.2'
|
2019-05-23 21:45:35 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 16
|
|
|
|
targetSdkVersion 27
|
|
|
|
versionCode 1
|
|
|
|
versionName '1.0.0'
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2019-05-25 03:03:28 +00:00
|
|
|
compileOnly "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
2019-05-24 01:44:15 +00:00
|
|
|
compileOnly 'com.squareup.okhttp3:okhttp:3.10.0'
|
2019-05-23 21:45:35 +00:00
|
|
|
}
|