mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2025-09-06 04:51:38 +02:00
20 lines
419 B
Text
20 lines
419 B
Text
/*
|
|
* 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
|
|
}
|
|
|
|
dependencies { implementation(libs.kotlin.coroutines.core) }
|