mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2025-09-07 01:27:18 +02:00
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)
|
|
}
|