aboutsummaryrefslogtreecommitdiff
path: root/crypto/age/build.gradle.kts
diff options
context:
space:
mode:
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)
+}