diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2023-12-15 17:40:11 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2023-12-15 18:53:58 +0530 |
commit | ced2008a85250a20e409364da9f8e640347adb1f (patch) | |
tree | ff0b10762d7a72b34c151362898070002122a75b /ssh/build.gradle.kts | |
parent | 4d5b32d98b0c97a790eb429844c79ef5d37d9e7a (diff) |
Revert "Refactor SSHKey into a separate module (#2450)"
This reverts commit 97b3577a463966e93d24649ff348fc4bb6825e50.
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) -} |