diff options
Diffstat (limited to 'openpgp-ktx/build.gradle.kts')
-rw-r--r-- | openpgp-ktx/build.gradle.kts | 28 |
1 files changed, 9 insertions, 19 deletions
diff --git a/openpgp-ktx/build.gradle.kts b/openpgp-ktx/build.gradle.kts index c82e65a1..c809466c 100644 --- a/openpgp-ktx/build.gradle.kts +++ b/openpgp-ktx/build.gradle.kts @@ -4,30 +4,20 @@ */ plugins { - id("com.android.library") - id("com.vanniktech.maven.publish") - kotlin("android") - `aps-plugin` + id("com.android.library") + id("com.vanniktech.maven.publish") + kotlin("android") + `aps-plugin` } android { - defaultConfig { - consumerProguardFiles("consumer-proguard-rules.pro") - } + defaultConfig { consumerProguardFiles("consumer-proguard-rules.pro") } - buildFeatures.aidl = true + buildFeatures.aidl = true - kotlin { - explicitApi() - } + kotlin { explicitApi() } - kotlinOptions { - freeCompilerArgs = freeCompilerArgs + listOf( - "-Xexplicit-api=strict" - ) - } + kotlinOptions { freeCompilerArgs = freeCompilerArgs + listOf("-Xexplicit-api=strict") } } -dependencies { - implementation(Dependencies.Kotlin.Coroutines.core) -} +dependencies { implementation(Dependencies.Kotlin.Coroutines.core) } |