2021-10-23 13:32:50 +02:00
|
|
|
/*
|
|
|
|
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
*/
|
2023-04-29 03:28:41 +02:00
|
|
|
plugins { id("com.github.android-password-store.kotlin-jvm-library") }
|
2021-10-23 13:32:50 +02:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api(projects.crypto.common)
|
|
|
|
implementation(libs.androidx.annotation)
|
|
|
|
implementation(libs.dagger.hilt.core)
|
2023-06-15 10:28:31 +02:00
|
|
|
implementation(libs.kotlinx.coroutines.core)
|
2021-10-23 13:32:50 +02:00
|
|
|
implementation(libs.thirdparty.kotlinResult)
|
2023-09-27 21:59:24 +02:00
|
|
|
implementation(libs.thirdparty.kotlinResult.coroutines)
|
2021-10-23 13:32:50 +02:00
|
|
|
implementation(libs.thirdparty.pgpainless)
|
|
|
|
testImplementation(libs.bundles.testDependencies)
|
2023-06-15 10:28:31 +02:00
|
|
|
testImplementation(libs.kotlinx.coroutines.test)
|
2022-07-13 21:12:23 +02:00
|
|
|
testImplementation(libs.testing.testparameterinjector)
|
2021-10-23 13:32:50 +02:00
|
|
|
}
|