2021-12-09 04:37:54 +00:00
|
|
|
/*
|
2024-08-13 19:01:25 +00:00
|
|
|
* Copyright © 2014-2024 The Android Password Store Authors. All Rights Reserved.
|
2021-12-09 04:37:54 +00:00
|
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
*/
|
2023-04-29 01:28:41 +00:00
|
|
|
plugins { id("com.github.android-password-store.kotlin-jvm-library") }
|
2021-12-09 04:37:54 +00:00
|
|
|
|
|
|
|
dependencies {
|
2023-06-15 08:28:31 +00:00
|
|
|
implementation(libs.kotlinx.coroutines.core)
|
2021-12-09 04:37:54 +00:00
|
|
|
implementation(libs.dagger.hilt.core)
|
2022-03-23 12:48:06 +00:00
|
|
|
api(libs.thirdparty.kotlinResult)
|
2021-12-09 04:37:54 +00:00
|
|
|
}
|