summaryrefslogtreecommitdiff
path: root/autofill-parser/build.gradle.kts
blob: 9e748cc5124835d14cc92bc1e5d5a7c80d0255c5 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * 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")
  id("org.jetbrains.dokka")
  `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.logcat)
  testImplementation(libs.bundles.testDependencies)
}