Android-Password-Store/openpgp-ktx/build.gradle.kts
Harsh Shandilya 7b25bf8783
openpgp-ktx: import at 95eed95fb5654e9dcfe32c3712ae97385e186396
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2020-11-29 17:51:16 +05:30

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)
}