d54dcb873a
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
28 lines
479 B
Text
28 lines
479 B
Text
plugins {
|
|
id("com.android.library")
|
|
id("maven-publish")
|
|
kotlin("android")
|
|
`aps-plugin`
|
|
}
|
|
|
|
android {
|
|
defaultConfig {
|
|
consumerProguardFiles("consumer-proguard-rules.pro")
|
|
}
|
|
|
|
buildFeatures.aidl = true
|
|
|
|
kotlin {
|
|
explicitApi()
|
|
}
|
|
|
|
kotlinOptions {
|
|
freeCompilerArgs = freeCompilerArgs + listOf(
|
|
"-Xexplicit-api=strict"
|
|
)
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(Dependencies.Kotlin.Coroutines.core)
|
|
}
|