2021-03-09 10:15:27 +01:00
|
|
|
/*
|
|
|
|
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
|
2021-04-10 09:45:54 +02:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2021-03-09 10:15:27 +01:00
|
|
|
*/
|
|
|
|
|
2020-11-24 22:57:42 +01:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
2021-02-06 13:04:17 +01:00
|
|
|
id("com.vanniktech.maven.publish")
|
2020-11-24 22:57:42 +01:00
|
|
|
kotlin("android")
|
2021-10-09 09:43:14 +02:00
|
|
|
id("org.jetbrains.dokka")
|
2021-11-15 07:52:00 +01:00
|
|
|
id("com.github.android-password-store.kotlin-common")
|
2020-11-24 22:57:42 +01:00
|
|
|
`aps-plugin`
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2020-11-30 08:42:58 +01:00
|
|
|
defaultConfig { consumerProguardFiles("consumer-proguard-rules.pro") }
|
2020-11-24 22:57:42 +01:00
|
|
|
|
|
|
|
buildFeatures.aidl = true
|
|
|
|
}
|
|
|
|
|
2021-04-12 14:08:06 +02:00
|
|
|
dependencies { implementation(libs.kotlin.coroutines.core) }
|