diff options
Diffstat (limited to 'openpgp-ktx/build.gradle.kts')
-rw-r--r-- | openpgp-ktx/build.gradle.kts | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/openpgp-ktx/build.gradle.kts b/openpgp-ktx/build.gradle.kts new file mode 100644 index 00000000..59765d6b --- /dev/null +++ b/openpgp-ktx/build.gradle.kts @@ -0,0 +1,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) +} |