1da4c42220
* fix(deps): update dependency com.hierynomus:sshj to v0.36.0 * refactor(build): drop unnecessary explicit dependency * chore(idea): cruft * fix(app): ensure SLF4J v1 is used * fix(build): disable illegal BindsCanBeExtensionFunction lint * chore: refresh Lint baselines --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
27 lines
819 B
Text
27 lines
819 B
Text
/*
|
|
* 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)
|
|
}
|