1071e0e749
* build: import Mozilla's Gradle plugin for PSL updates * autofill-parser: add tests for PublicSuffixListLoader * autofill-parser: regenerate publicsuffixes list * github: switch to Gradle plugin for PSL updates
26 lines
736 B
Text
26 lines
736 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")
|
|
`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.timberkt)
|
|
testImplementation(libs.bundles.testDependencies)
|
|
}
|