Skip to content
This repository was archived by the owner on Oct 15, 2024. It is now read-only.

Commit 0fe01f1

Browse files
fix(deps): update dependency org.bouncycastle:bcprov-jdk18on to v1.78 (#2986)
* fix(deps): update dependency org.bouncycastle:bcprov-jdk18on to v1.78 * fix(deps): add missing bcutil dependency * fix(build): drop multi-release JAR artifacts from APK --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Harsh Shandilya <[email protected]>
1 parent 2046abf commit 0fe01f1

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

app/build.gradle.kts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ android {
3434
useLiveLiterals = false
3535
kotlinCompilerExtensionVersion = libs.versions.composeCompiler.get()
3636
}
37+
38+
packaging { resources.excludes.add("META-INF/versions/**") }
3739
}
3840

3941
dependencies {
@@ -87,6 +89,7 @@ dependencies {
8789
implementation(libs.thirdparty.leakcanary.plumber)
8890
implementation(libs.thirdparty.sshj)
8991
implementation(libs.thirdparty.bouncycastle.bcprov)
92+
implementation(libs.thirdparty.bouncycastle.bcutil)
9093

9194
implementation(libs.thirdparty.slf4j.api) {
9295
because("SSHJ now uses SLF4J 2.0 which we don't want")

gradle/libs.versions.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[versions]
22
agp = "8.3.1"
33
androidxActivity = "1.9.0-rc01"
4-
bouncycastle = "1.77"
4+
bouncycastle = "1.78"
55
# @keep used for kotlinCompilerExtensionVersion
66
composeCompiler = "1.5.11-dev-k1.9.23-96ef9dc6af1"
77
coroutines = "1.8.1-Beta"
@@ -72,6 +72,7 @@ testing-sharedPrefsMock = "com.github.android-password-store:shared-preferences-
7272
testing-testparameterinjector = "com.google.testparameterinjector:test-parameter-injector:1.15"
7373
testing-turbine = "app.cash.turbine:turbine:1.1.0"
7474
thirdparty-bouncycastle-bcprov = { module = "org.bouncycastle:bcprov-jdk18on", version.ref = "bouncycastle" }
75+
thirdparty-bouncycastle-bcutil = { module = "org.bouncycastle:bcutil-jdk18on", version.ref = "bouncycastle" }
7576
# We're fine with the current version.
7677
# noinspection GradleDependency
7778
thirdparty-commons_codec = "commons-codec:commons-codec:1.14"

0 commit comments

Comments
 (0)