2021-04-16 15:38:51 +00:00
|
|
|
/*
|
|
|
|
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
*/
|
2022-10-24 09:16:38 +00:00
|
|
|
@file:Suppress("DSL_SCOPE_VIOLATION", "UnstableApiUsage")
|
2021-12-03 09:38:33 +00:00
|
|
|
|
2021-04-16 15:38:51 +00:00
|
|
|
plugins {
|
2022-12-19 11:17:17 +00:00
|
|
|
id("com.github.android-password-store.android-library")
|
|
|
|
id("com.github.android-password-store.kotlin-android")
|
2021-12-03 09:38:33 +00:00
|
|
|
id("com.github.android-password-store.kotlin-library")
|
2021-04-16 15:38:51 +00:00
|
|
|
}
|
2021-04-17 21:18:59 +00:00
|
|
|
|
2022-12-19 11:17:17 +00:00
|
|
|
android {
|
|
|
|
namespace = "app.passwordstore.format.common"
|
|
|
|
compileOptions { isCoreLibraryDesugaringEnabled = true }
|
|
|
|
}
|
|
|
|
|
2021-04-17 21:18:59 +00:00
|
|
|
dependencies {
|
2022-12-19 11:17:17 +00:00
|
|
|
api(libs.kotlin.coroutines.core)
|
2022-10-21 16:06:27 +00:00
|
|
|
api(libs.thirdparty.kotlinResult)
|
2022-12-19 11:17:17 +00:00
|
|
|
coreLibraryDesugaring(libs.android.desugarJdkLibs)
|
2021-12-09 04:37:54 +00:00
|
|
|
implementation(projects.coroutineUtils)
|
2023-01-11 12:27:49 +00:00
|
|
|
implementation(libs.androidx.annotation)
|
2021-04-17 21:18:59 +00:00
|
|
|
implementation(libs.dagger.hilt.core)
|
|
|
|
implementation(libs.thirdparty.commons.codec)
|
2022-12-19 11:17:17 +00:00
|
|
|
testImplementation(projects.coroutineUtilsTesting)
|
|
|
|
testImplementation(libs.bundles.testDependencies)
|
|
|
|
testImplementation(libs.kotlin.coroutines.test)
|
|
|
|
testImplementation(libs.testing.robolectric)
|
|
|
|
testImplementation(libs.testing.turbine)
|
2021-04-17 21:18:59 +00:00
|
|
|
}
|