2021-03-09 14:45:27 +05:30
|
|
|
/*
|
|
|
|
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
|
2021-04-10 13:09:07 +05:30
|
|
|
* SPDX-License-Identifier: LGPL-3.0-only WITH LGPL-3.0-linking-exception
|
2021-03-09 14:45:27 +05:30
|
|
|
*/
|
|
|
|
|
2020-09-16 20:17:55 +02:00
|
|
|
plugins {
|
2020-10-16 20:48:11 +05:30
|
|
|
id("com.android.library")
|
2021-02-06 17:34:17 +05:30
|
|
|
id("com.vanniktech.maven.publish")
|
2020-10-16 20:48:11 +05:30
|
|
|
kotlin("android")
|
|
|
|
`aps-plugin`
|
2021-07-29 21:23:59 +05:30
|
|
|
`psl-plugin`
|
2020-09-20 16:54:38 +05:30
|
|
|
}
|
|
|
|
|
2021-07-29 21:23:59 +05:30
|
|
|
android {
|
|
|
|
defaultConfig { consumerProguardFiles("consumer-rules.pro") }
|
|
|
|
sourceSets { getByName("test") { resources.srcDir("src/main/assets") } }
|
|
|
|
}
|
2020-09-16 20:17:55 +02:00
|
|
|
|
|
|
|
dependencies {
|
2021-05-12 16:11:32 +05:30
|
|
|
implementation(libs.androidx.annotation)
|
2021-04-12 17:38:06 +05:30
|
|
|
implementation(libs.androidx.autofill)
|
|
|
|
implementation(libs.kotlin.coroutines.android)
|
|
|
|
implementation(libs.kotlin.coroutines.core)
|
|
|
|
implementation(libs.thirdparty.timberkt)
|
2021-07-29 21:23:59 +05:30
|
|
|
testImplementation(libs.bundles.testDependencies)
|
2020-09-16 20:17:55 +02:00
|
|
|
}
|