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
|
|
|
|
*/
|
2022-10-24 11:16:38 +02:00
|
|
|
@file:Suppress("DSL_SCOPE_VIOLATION", "UnstableApiUsage")
|
2021-12-03 10:38:33 +01:00
|
|
|
|
2021-04-16 17:38:51 +02:00
|
|
|
plugins {
|
|
|
|
kotlin("jvm")
|
2021-12-03 10:38:33 +01:00
|
|
|
id("com.github.android-password-store.kotlin-library")
|
2021-04-16 17:38:51 +02:00
|
|
|
}
|
2021-04-17 23:18:59 +02:00
|
|
|
|
|
|
|
dependencies {
|
2022-10-21 18:06:27 +02:00
|
|
|
api(libs.thirdparty.kotlinResult)
|
2021-12-09 05:37:54 +01:00
|
|
|
implementation(projects.coroutineUtils)
|
2021-05-12 12:41:32 +02:00
|
|
|
implementation(libs.androidx.annotation)
|
2021-04-17 23:18:59 +02:00
|
|
|
implementation(libs.dagger.hilt.core)
|
|
|
|
implementation(libs.thirdparty.commons.codec)
|
|
|
|
implementation(libs.kotlin.coroutines.core)
|
|
|
|
}
|