diff options
author | Fabian Henneke <FabianHenneke@users.noreply.github.com> | 2020-09-01 10:12:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-01 13:42:27 +0530 |
commit | cbb96397d1f5cffef7984b08a426646aaea93e5b (patch) | |
tree | da11f9d477758f69f7349dea56bfcee3a92b2446 /app/build.gradle.kts | |
parent | 55d64fb73710d8dcadd28089ab233cd543830184 (diff) |
Add Keystore backend for SSH public key authentication (#1070)
Diffstat (limited to 'app/build.gradle.kts')
-rw-r--r-- | app/build.gradle.kts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/build.gradle.kts b/app/build.gradle.kts index c4a17e43..e613b79a 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -2,8 +2,8 @@ * Copyright © 2014-2020 The Android Password Store Authors. All Rights Reserved. * SPDX-License-Identifier: GPL-3.0-only */ -import java.util.Properties import com.android.build.gradle.internal.api.BaseVariantOutputImpl +import java.util.Properties plugins { kotlin("android") @@ -113,11 +113,11 @@ dependencies { implementation(Dependencies.FirstParty.zxing_android_embedded) implementation(Dependencies.ThirdParty.commons_codec) + implementation(Dependencies.ThirdParty.eddsa) implementation(Dependencies.ThirdParty.fastscroll) implementation(Dependencies.ThirdParty.jgit) { exclude(group = "org.apache.httpcomponents", module = "httpclient") } - implementation(Dependencies.ThirdParty.jsch) implementation(Dependencies.ThirdParty.sshj) implementation(Dependencies.ThirdParty.bouncycastle) implementation(Dependencies.ThirdParty.plumber) |