2021-03-09 09:15:27 +00:00
|
|
|
/*
|
|
|
|
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
|
2021-04-10 07:39:07 +00:00
|
|
|
* SPDX-License-Identifier: LGPL-3.0-only WITH LGPL-3.0-linking-exception
|
2021-03-09 09:15:27 +00:00
|
|
|
*/
|
2022-10-24 09:16:38 +00:00
|
|
|
@file:Suppress("DSL_SCOPE_VIOLATION", "UnstableApiUsage")
|
2021-03-09 09:15:27 +00:00
|
|
|
|
2020-09-16 18:17:55 +00:00
|
|
|
plugins {
|
2021-12-10 18:42:54 +00:00
|
|
|
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")
|
2021-12-03 09:38:33 +00:00
|
|
|
id("com.github.android-password-store.kotlin-library")
|
2021-11-28 20:57:21 +00:00
|
|
|
id("com.github.android-password-store.psl-plugin")
|
2020-09-20 11:24:38 +00:00
|
|
|
}
|
|
|
|
|
2021-07-29 15:53:59 +00:00
|
|
|
android {
|
|
|
|
defaultConfig { consumerProguardFiles("consumer-rules.pro") }
|
|
|
|
sourceSets { getByName("test") { resources.srcDir("src/main/assets") } }
|
2022-03-27 12:37:18 +00:00
|
|
|
namespace = "com.github.androidpasswordstore.autofillparser"
|
2021-07-29 15:53:59 +00:00
|
|
|
}
|
2020-09-16 18:17:55 +00:00
|
|
|
|
|
|
|
dependencies {
|
2021-05-12 10:41:32 +00:00
|
|
|
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)
|
2021-10-03 08:32:15 +00:00
|
|
|
implementation(libs.thirdparty.logcat)
|
2021-07-29 15:53:59 +00:00
|
|
|
testImplementation(libs.bundles.testDependencies)
|
2020-09-16 18:17:55 +00:00
|
|
|
}
|