diff options
Diffstat (limited to 'ssh/build.gradle.kts')
-rw-r--r-- | ssh/build.gradle.kts | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/ssh/build.gradle.kts b/ssh/build.gradle.kts new file mode 100644 index 00000000..80e6f58c --- /dev/null +++ b/ssh/build.gradle.kts @@ -0,0 +1,27 @@ +/* + * 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") + id("com.github.android-password-store.kotlin-library") +} + +android { + namespace = "app.passwordstore.ssh" + sourceSets { getByName("test") { resources.srcDir("src/main/res/raw") } } +} + +dependencies { + implementation(libs.androidx.core.ktx) + implementation(libs.kotlin.coroutines.android) + implementation(libs.kotlin.coroutines.core) + implementation(libs.thirdparty.sshj) { exclude(group = "org.bouncycastle") } + implementation(libs.thirdparty.logcat) + implementation(libs.androidx.security) + implementation(libs.thirdparty.eddsa) + implementation(libs.thirdparty.kotlinResult) +} |