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 {
|
2021-03-09 10:23:11 +01:00
|
|
|
id("com.android.library")
|
|
|
|
id("com.vanniktech.maven.publish")
|
|
|
|
kotlin("android")
|
|
|
|
`aps-plugin`
|
2020-11-24 22:57:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2021-03-09 10:23:11 +01:00
|
|
|
defaultConfig { consumerProguardFiles("consumer-proguard-rules.pro") }
|
2020-11-24 22:57:42 +01:00
|
|
|
|
2021-03-09 10:23:11 +01:00
|
|
|
buildFeatures.aidl = true
|
2020-11-24 22:57:42 +01:00
|
|
|
|
2021-03-09 10:23:11 +01:00
|
|
|
kotlin { explicitApi() }
|
2020-11-24 22:57:42 +01:00
|
|
|
|
2021-03-09 10:23:11 +01:00
|
|
|
kotlinOptions { freeCompilerArgs = freeCompilerArgs + listOf("-Xexplicit-api=strict") }
|
2020-11-24 22:57:42 +01:00
|
|
|
}
|
|
|
|
|
2021-04-12 14:08:06 +02:00
|
|
|
dependencies { implementation(libs.kotlin.coroutines.core) }
|