Android-Password-Store/openpgp-ktx/build.gradle.kts
Harsh Shandilya a13176a23d
build: enable explicit API automatically on all library projects
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2021-04-18 03:01:14 +05:30

19 lines
419 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")
`aps-plugin`
}
android {
defaultConfig { consumerProguardFiles("consumer-proguard-rules.pro") }
buildFeatures.aidl = true
}
dependencies { implementation(libs.kotlin.coroutines.core) }