2021-03-09 09:15:27 +00:00
|
|
|
/*
|
|
|
|
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
|
2021-04-10 07:45:54 +00:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2021-03-09 09:15:27 +00:00
|
|
|
*/
|
|
|
|
|
2020-11-24 21:57:42 +00:00
|
|
|
plugins {
|
2021-03-09 09:23:11 +00:00
|
|
|
id("com.android.library")
|
|
|
|
id("com.vanniktech.maven.publish")
|
|
|
|
kotlin("android")
|
|
|
|
`aps-plugin`
|
2020-11-24 21:57:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2021-03-09 09:23:11 +00:00
|
|
|
defaultConfig { consumerProguardFiles("consumer-proguard-rules.pro") }
|
2020-11-24 21:57:42 +00:00
|
|
|
|
2021-03-09 09:23:11 +00:00
|
|
|
buildFeatures.aidl = true
|
2020-11-24 21:57:42 +00:00
|
|
|
|
2021-03-09 09:23:11 +00:00
|
|
|
kotlin { explicitApi() }
|
2020-11-24 21:57:42 +00:00
|
|
|
|
2021-03-09 09:23:11 +00:00
|
|
|
kotlinOptions { freeCompilerArgs = freeCompilerArgs + listOf("-Xexplicit-api=strict") }
|
2020-11-24 21:57:42 +00:00
|
|
|
}
|
|
|
|
|
2021-03-09 09:23:11 +00:00
|
|
|
dependencies { implementation(Dependencies.Kotlin.Coroutines.core) }
|