From 88151f4bdd29a0d29b182b11b37e79bf347b6955 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Fri, 27 May 2022 13:00:10 +0530 Subject: Simplify BouncyCastle workaround and upgrade Fragment (#1926) * Simplify bouncycastle workaround * Upgrade fragment-ktx to 1.5.x --- app/build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'app') diff --git a/app/build.gradle.kts b/app/build.gradle.kts index e5d0c5d2..efd8541a 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -11,7 +11,6 @@ plugins { id("com.github.android-password-store.versioning-plugin") id("com.github.android-password-store.sentry") id("com.github.android-password-store.rename-artifacts") - id("com.github.android-password-store.bouncycastle-dependency") id("dagger.hilt.android.plugin") } @@ -74,7 +73,6 @@ dependencies { implementation(libs.aps.sublimeFuzzy) implementation(libs.aps.zxingAndroidEmbedded) - implementation(libs.thirdparty.bouncycastle) implementation(libs.thirdparty.eddsa) implementation(libs.thirdparty.fastscroll) implementation(libs.thirdparty.flowbinding.android) @@ -86,7 +84,9 @@ dependencies { implementation(libs.thirdparty.modernAndroidPrefs) implementation(libs.thirdparty.plumber) implementation(libs.thirdparty.sshauth) - implementation(libs.thirdparty.sshj) + implementation(libs.thirdparty.sshj) { exclude(group = "org.bouncycastle") } + implementation(libs.thirdparty.bouncycastle.bcprov) + implementation(libs.thirdparty.bouncycastle.bcpkix) if (snapshot.snapshot) { implementation(libs.thirdparty.whatthestack) -- cgit v1.2.3