blob: 59765d6b4c06c5f1edb773a274b237dc7aa4fec9 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
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)
}
|