mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2025-09-06 17:04:09 +02:00
24 lines
548 B
Text
24 lines
548 B
Text
/*
|
|
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
*/
|
|
|
|
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) }
|