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 {
|
2021-12-11 00:12:54 +05:30
|
|
|
id("com.github.android-password-store.published-android-library")
|
2021-11-29 02:27:21 +05:30
|
|
|
id("com.github.android-password-store.kotlin-android")
|
2021-12-03 15:08:33 +05:30
|
|
|
id("com.github.android-password-store.kotlin-library")
|
2021-11-29 02:27:21 +05:30
|
|
|
id("com.github.android-password-store.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") } }
|
2022-03-27 18:07:18 +05:30
|
|
|
namespace = "com.github.androidpasswordstore.autofillparser"
|
2021-07-29 21:23:59 +05:30
|
|
|
}
|
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)
|
2021-10-03 01:32:15 -07:00
|
|
|
implementation(libs.thirdparty.logcat)
|
2021-07-29 21:23:59 +05:30
|
|
|
testImplementation(libs.bundles.testDependencies)
|
2020-09-16 20:17:55 +02:00
|
|
|
}
|