9c9616d047
* fix: ignore `CancellationException` in suspend functions Signed-off-by: Aditya Wasan <adityawasan55@gmail.com> * build(coroutine-utils): use `api` instead of `implementation` Co-authored-by: Harsh Shandilya <me@msfjarvis.dev> Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
21 lines
629 B
Text
21 lines
629 B
Text
/*
|
|
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
*/
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("com.github.android-password-store.kotlin-library")
|
|
}
|
|
|
|
dependencies {
|
|
api(projects.cryptoCommon)
|
|
implementation(projects.coroutineUtils)
|
|
implementation(libs.androidx.annotation)
|
|
implementation(libs.dagger.hilt.core)
|
|
implementation(libs.kotlin.coroutines.core)
|
|
implementation(libs.thirdparty.kotlinResult)
|
|
implementation(libs.thirdparty.pgpainless)
|
|
testImplementation(libs.bundles.testDependencies)
|
|
testImplementation(libs.kotlin.coroutines.test)
|
|
}
|