28 lines
818 B
Text
28 lines
818 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")
|
|
id("com.github.android-password-store.kotlin-common")
|
|
`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)
|
|
}
|