blob: 6f90e6c8ac855b475f675c8b697d86043a71a533 (
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
|
/*
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
plugins {
id("com.android.library")
id("com.vanniktech.maven.publish")
kotlin("android")
`aps-plugin`
}
android {
defaultConfig { consumerProguardFiles("consumer-proguard-rules.pro") }
buildFeatures.aidl = true
kotlin { explicitApi() }
kotlinOptions { freeCompilerArgs = freeCompilerArgs + listOf("-Xexplicit-api=strict") }
}
dependencies { implementation(Dependencies.Kotlin.Coroutines.core) }
|