29 lines
470 B
Text
29 lines
470 B
Text
|
plugins {
|
||
|
id("com.android.library")
|
||
|
id("maven-publish")
|
||
|
kotlin("android")
|
||
|
`aps-plugin`
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
defaultConfig {
|
||
|
consumerProguardFiles("consumer-rules.pro")
|
||
|
}
|
||
|
|
||
|
buildFeatures.aidl = true
|
||
|
|
||
|
kotlin {
|
||
|
explicitApi()
|
||
|
}
|
||
|
|
||
|
kotlinOptions {
|
||
|
freeCompilerArgs = freeCompilerArgs + listOf(
|
||
|
"-Xexplicit-api=strict"
|
||
|
)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(Dependencies.Kotlin.Coroutines.core)
|
||
|
}
|