aboutsummaryrefslogtreecommitdiff
path: root/autofill-parser/build.gradle.kts
blob: da6dcc4d62cd2fa1086405c7a11347135c9aada3 (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
28
29
30
31
/*
 * 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")
  `aps-plugin`
}

android {
  defaultConfig {
    versionCode = 2
    versionName = "2.0"
    consumerProguardFiles("consumer-rules.pro")
  }

  kotlin { explicitApi() }

  kotlinOptions { freeCompilerArgs = freeCompilerArgs + listOf("-Xexplicit-api=strict") }
}

dependencies {
  compileOnly(Dependencies.AndroidX.annotation)
  implementation(Dependencies.AndroidX.autofill)
  implementation(Dependencies.Kotlin.Coroutines.android)
  implementation(Dependencies.Kotlin.Coroutines.core)
  implementation(Dependencies.ThirdParty.timberkt)
}