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-03-09 10:23:11 +01:00
|
|
|
id("com.android.library")
|
|
|
|
id("com.vanniktech.maven.publish")
|
|
|
|
kotlin("android")
|
|
|
|
`aps-plugin`
|
2020-09-20 13:24:38 +02:00
|
|
|
}
|
|
|
|
|
2020-09-16 20:17:55 +02:00
|
|
|
android {
|
2021-03-09 10:23:11 +01:00
|
|
|
defaultConfig {
|
|
|
|
versionCode = 2
|
|
|
|
versionName = "2.0"
|
|
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
|
|
}
|
2020-09-16 20:17:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-04-12 14:08:06 +02:00
|
|
|
compileOnly(libs.androidx.annotation)
|
|
|
|
implementation(libs.androidx.autofill)
|
|
|
|
implementation(libs.kotlin.coroutines.android)
|
|
|
|
implementation(libs.kotlin.coroutines.core)
|
|
|
|
implementation(libs.thirdparty.timberkt)
|
2020-09-16 20:17:55 +02:00
|
|
|
}
|