2020-11-24 21:57:42 +00:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
|
|
|
id("maven-publish")
|
|
|
|
kotlin("android")
|
|
|
|
`aps-plugin`
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
defaultConfig {
|
2020-11-30 07:42:58 +00:00
|
|
|
consumerProguardFiles("consumer-proguard-rules.pro")
|
2020-11-24 21:57:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
buildFeatures.aidl = true
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
explicitApi()
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlinOptions {
|
|
|
|
freeCompilerArgs = freeCompilerArgs + listOf(
|
|
|
|
"-Xexplicit-api=strict"
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(Dependencies.Kotlin.Coroutines.core)
|
|
|
|
}
|