diff options
Diffstat (limited to 'ssh/build.gradle.kts')
-rw-r--r-- | ssh/build.gradle.kts | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/ssh/build.gradle.kts b/ssh/build.gradle.kts deleted file mode 100644 index a975efab..00000000 --- a/ssh/build.gradle.kts +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright © The Android Password Store Authors. All Rights Reserved. - * SPDX-License-Identifier: GPL-3.0-only - */ -@file:Suppress("UnstableApiUsage") - -plugins { - id("com.github.android-password-store.android-library") - id("com.github.android-password-store.kotlin-android") -} - -android { - namespace = "app.passwordstore.ssh" - buildFeatures { androidResources = true } - sourceSets { getByName("test") { resources.srcDir("src/main/res/raw") } } -} - -dependencies { - implementation(libs.androidx.core.ktx) - implementation(libs.kotlinx.coroutines.android) - implementation(libs.kotlinx.coroutines.core) - implementation(libs.thirdparty.sshj) - implementation(libs.thirdparty.logcat) - implementation(libs.androidx.security) - implementation(libs.thirdparty.eddsa) - implementation(libs.thirdparty.kotlinResult) -} |