2021-03-09 10:15:27 +01:00
|
|
|
/*
|
|
|
|
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
|
2021-04-10 09:39:07 +02:00
|
|
|
* SPDX-License-Identifier: LGPL-3.0-only WITH LGPL-3.0-linking-exception
|
2021-03-09 10:15:27 +01:00
|
|
|
*/
|
|
|
|
|
2020-09-16 20:17:55 +02:00
|
|
|
plugins {
|
2021-11-28 21:57:21 +01:00
|
|
|
id("com.github.android-password-store.android-library")
|
|
|
|
id("com.github.android-password-store.kotlin-android")
|
2021-12-03 10:38:33 +01:00
|
|
|
id("com.github.android-password-store.kotlin-library")
|
2021-02-06 13:04:17 +01:00
|
|
|
id("com.vanniktech.maven.publish")
|
2021-10-09 09:43:14 +02:00
|
|
|
id("org.jetbrains.dokka")
|
2021-11-28 21:57:21 +01:00
|
|
|
id("com.github.android-password-store.psl-plugin")
|
2020-09-20 13:24:38 +02:00
|
|
|
}
|
|
|
|
|
2021-07-29 17:53:59 +02:00
|
|
|
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 12:41:32 +02:00
|
|
|
implementation(libs.androidx.annotation)
|
2021-04-12 14:08:06 +02:00
|
|
|
implementation(libs.androidx.autofill)
|
|
|
|
implementation(libs.kotlin.coroutines.android)
|
|
|
|
implementation(libs.kotlin.coroutines.core)
|
2021-10-03 10:32:15 +02:00
|
|
|
implementation(libs.thirdparty.logcat)
|
2021-07-29 17:53:59 +02:00
|
|
|
testImplementation(libs.bundles.testDependencies)
|
2020-09-16 20:17:55 +02:00
|
|
|
}
|