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