6df3ba0083
* build: upgrade all plugins * autofill-parser/openpgp-ktx: apply Dokka plugin * Move repository configuration to settings.gradle.kts * Replace deprecated lintOptions * Reorder repositories
27 lines
762 B
Text
27 lines
762 B
Text
/*
|
|
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
|
|
* SPDX-License-Identifier: LGPL-3.0-only WITH LGPL-3.0-linking-exception
|
|
*/
|
|
|
|
plugins {
|
|
id("com.android.library")
|
|
id("com.vanniktech.maven.publish")
|
|
kotlin("android")
|
|
id("org.jetbrains.dokka")
|
|
`aps-plugin`
|
|
`psl-plugin`
|
|
}
|
|
|
|
android {
|
|
defaultConfig { consumerProguardFiles("consumer-rules.pro") }
|
|
sourceSets { getByName("test") { resources.srcDir("src/main/assets") } }
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.androidx.annotation)
|
|
implementation(libs.androidx.autofill)
|
|
implementation(libs.kotlin.coroutines.android)
|
|
implementation(libs.kotlin.coroutines.core)
|
|
implementation(libs.thirdparty.logcat)
|
|
testImplementation(libs.bundles.testDependencies)
|
|
}
|