Android-Password-Store/openpgp-ktx/build.gradle.kts
Harsh Shandilya 6df3ba0083
Upgrade plugin dependencies and fix Javadoc generation (#1517)
* build: upgrade all plugins

* autofill-parser/openpgp-ktx: apply Dokka plugin

* Move repository configuration to settings.gradle.kts

* Replace deprecated lintOptions

* Reorder repositories
2021-10-09 13:13:14 +05:30

20 lines
447 B
Text

/*
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
plugins {
id("com.android.library")
id("com.vanniktech.maven.publish")
kotlin("android")
id("org.jetbrains.dokka")
`aps-plugin`
}
android {
defaultConfig { consumerProguardFiles("consumer-proguard-rules.pro") }
buildFeatures.aidl = true
}
dependencies { implementation(libs.kotlin.coroutines.core) }