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
|
|
|
|
*/
|
2021-12-03 09:38:33 +00:00
|
|
|
|
2021-04-16 15:38:51 +00:00
|
|
|
plugins {
|
|
|
|
kotlin("jvm")
|
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
|
|
|
|
|
|
|
dependencies {
|
2021-12-09 04:37:54 +00:00
|
|
|
implementation(projects.coroutineUtils)
|
2021-05-12 10:41:32 +00:00
|
|
|
implementation(libs.androidx.annotation)
|
2021-04-17 21:18:59 +00:00
|
|
|
implementation(libs.dagger.hilt.core)
|
|
|
|
implementation(libs.thirdparty.commons.codec)
|
|
|
|
implementation(libs.thirdparty.kotlinResult)
|
|
|
|
implementation(libs.kotlin.coroutines.core)
|
2021-12-09 04:37:54 +00:00
|
|
|
testImplementation(projects.coroutineUtilsTesting)
|
2021-04-17 21:18:59 +00:00
|
|
|
testImplementation(libs.bundles.testDependencies)
|
|
|
|
testImplementation(libs.kotlin.coroutines.test)
|
|
|
|
}
|