diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-05-27 13:00:10 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-27 07:30:10 +0000 |
commit | 88151f4bdd29a0d29b182b11b37e79bf347b6955 (patch) | |
tree | 8e39e25df45507f0e42bb325153243ab75bcd321 /app/build.gradle.kts | |
parent | 53fb1eba9fe0ceba36a03fc04a33bb065af7e0c5 (diff) |
Simplify BouncyCastle workaround and upgrade Fragment (#1926)
* Simplify bouncycastle workaround
* Upgrade fragment-ktx to 1.5.x
Diffstat (limited to 'app/build.gradle.kts')
-rw-r--r-- | app/build.gradle.kts | 6 |
1 files changed, 3 insertions, 3 deletions
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) |