diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2021-03-09 14:53:11 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2021-03-18 11:40:30 +0530 |
commit | 774fda83ac276a635e3402034b1eedbd10be916f (patch) | |
tree | 57783a953fcd193d32f1e3dc8df26e07f03df328 /openpgp-ktx/build.gradle.kts | |
parent | be31ae37f443982b377d027cd613f04d0926568d (diff) |
all: reformat with ktfmt
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
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) } |