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-12-10 19:42:54 +01:00
|
|
|
id("com.github.android-password-store.published-android-library")
|
2021-11-28 21:57:21 +01:00
|
|
|
id("com.github.android-password-store.kotlin-android")
|
2021-12-03 10:38:33 +01:00
|
|
|
id("com.github.android-password-store.kotlin-library")
|
2020-11-24 22:57:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2020-11-30 08:42:58 +01:00
|
|
|
defaultConfig { consumerProguardFiles("consumer-proguard-rules.pro") }
|
2020-11-24 22:57:42 +01:00
|
|
|
buildFeatures.aidl = true
|
2022-03-27 14:37:18 +02:00
|
|
|
namespace = "me.msfjarvis.openpgpktx"
|
2020-11-24 22:57:42 +01:00
|
|
|
}
|
|
|
|
|
2021-04-12 14:08:06 +02:00
|
|
|
dependencies { implementation(libs.kotlin.coroutines.core) }
|