From 959a56d7ffbc20db60721d7a09f399c8bdefe07e Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Thu, 10 Aug 2023 03:21:47 +0530 Subject: refactor: un-flatten module structure --- format/common/build.gradle.kts | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 format/common/build.gradle.kts (limited to 'format/common/build.gradle.kts') diff --git a/format/common/build.gradle.kts b/format/common/build.gradle.kts new file mode 100644 index 00000000..b4ac58b6 --- /dev/null +++ b/format/common/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(libs.kotlinx.coroutines.core) + api(libs.thirdparty.kotlinResult) + implementation(projects.coroutineUtils) + implementation(libs.androidx.annotation) + implementation(libs.dagger.hilt.core) + implementation(libs.thirdparty.commons.codec) + implementation(libs.thirdparty.uri) + testImplementation(libs.bundles.testDependencies) + testImplementation(libs.kotlinx.coroutines.test) + testImplementation(libs.testing.turbine) +} -- cgit v1.2.3