2021-04-16 17:38:51 +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-04-17 23:18:59 +02:00
|
|
|
|
|
|
|
dependencies {
|
2023-06-15 10:28:31 +02:00
|
|
|
api(libs.kotlinx.coroutines.core)
|
2022-10-21 18:06:27 +02:00
|
|
|
api(libs.thirdparty.kotlinResult)
|
2021-12-09 05:37:54 +01:00
|
|
|
implementation(projects.coroutineUtils)
|
2023-01-11 13:27:49 +01:00
|
|
|
implementation(libs.androidx.annotation)
|
2021-04-17 23:18:59 +02:00
|
|
|
implementation(libs.dagger.hilt.core)
|
|
|
|
implementation(libs.thirdparty.commons.codec)
|
2023-02-27 16:56:21 +01:00
|
|
|
implementation(libs.thirdparty.uri)
|
2022-12-19 12:17:17 +01:00
|
|
|
testImplementation(libs.bundles.testDependencies)
|
2023-06-15 10:28:31 +02:00
|
|
|
testImplementation(libs.kotlinx.coroutines.test)
|
2022-12-19 12:17:17 +01:00
|
|
|
testImplementation(libs.testing.turbine)
|
2021-04-17 23:18:59 +02:00
|
|
|
}
|