aboutsummaryrefslogtreecommitdiff
path: root/crypto/age/build.gradle.kts
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2024-08-14 00:10:22 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2024-08-18 17:15:42 +0530
commitae7487e76f8da04b7da7268980830f3580389926 (patch)
treed210b216083b0a6f442c763237c8b3986a9b8586 /crypto/age/build.gradle.kts
parentdcc7d1e0ee0db3f9157d1427f3de2e9a568bca5b (diff)
fix(crypto/age): iniths/age-backend
Diffstat (limited to 'crypto/age/build.gradle.kts')
-rw-r--r--crypto/age/build.gradle.kts18
1 files changed, 18 insertions, 0 deletions
diff --git a/crypto/age/build.gradle.kts b/crypto/age/build.gradle.kts
new file mode 100644
index 00000000..dd44966b
--- /dev/null
+++ b/crypto/age/build.gradle.kts
@@ -0,0 +1,18 @@
+/*
+ * Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
+ * SPDX-License-Identifier: GPL-3.0-only
+ */
+plugins { id("com.github.android-password-store.kotlin-jvm-library") }
+
+dependencies {
+ api(projects.crypto.common)
+ implementation(libs.androidx.annotation)
+ implementation(libs.aps.kage)
+ implementation(libs.dagger.hilt.core)
+ implementation(libs.kotlinx.coroutines.core)
+ implementation(libs.thirdparty.kotlinResult)
+ implementation(libs.thirdparty.kotlinResult.coroutines)
+ testImplementation(libs.bundles.testDependencies)
+ testImplementation(libs.kotlinx.coroutines.test)
+ testImplementation(libs.testing.testparameterinjector)
+}