Android-Password-Store/autofill-parser/build.gradle.kts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
854 B
Text
Raw Normal View History

/*
* 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.github.android-password-store.published-android-library")
2021-11-28 20:57:21 +00:00
id("com.github.android-password-store.kotlin-android")
id("com.github.android-password-store.kotlin-library")
2021-11-28 20:57:21 +00:00
id("com.github.android-password-store.psl-plugin")
}
android {
defaultConfig { consumerProguardFiles("consumer-rules.pro") }
sourceSets { getByName("test") { resources.srcDir("src/main/assets") } }
}
dependencies {
implementation(libs.androidx.annotation)
2021-04-12 12:08:06 +00:00
implementation(libs.androidx.autofill)
implementation(libs.kotlin.coroutines.android)
implementation(libs.kotlin.coroutines.core)
implementation(libs.thirdparty.logcat)
testImplementation(libs.bundles.testDependencies)
}