aboutsummaryrefslogtreecommitdiff
path: root/app/build.gradle.kts
diff options
context:
space:
mode:
authorrenovate[bot] <29139614+renovate[bot]@users.noreply.github.com>2024-04-06 10:00:30 +0000
committerGitHub <noreply@github.com>2024-04-06 10:00:30 +0000
commit0fe01f16508dd3e722f233eb95f91acc4884f3bc (patch)
tree6e458754231b6dbec56cc897558d62ac1c64e43c /app/build.gradle.kts
parent2046abfcb34728a3f144926ad3ed4ffc71d13db8 (diff)
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 <me@msfjarvis.dev>
Diffstat (limited to 'app/build.gradle.kts')
-rw-r--r--app/build.gradle.kts3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/build.gradle.kts b/app/build.gradle.kts
index e56c5385..872c1eae 100644
--- a/app/build.gradle.kts
+++ b/app/build.gradle.kts
@@ -34,6 +34,8 @@ android {
useLiveLiterals = false
kotlinCompilerExtensionVersion = libs.versions.composeCompiler.get()
}
+
+ packaging { resources.excludes.add("META-INF/versions/**") }
}
dependencies {
@@ -87,6 +89,7 @@ dependencies {
implementation(libs.thirdparty.leakcanary.plumber)
implementation(libs.thirdparty.sshj)
implementation(libs.thirdparty.bouncycastle.bcprov)
+ implementation(libs.thirdparty.bouncycastle.bcutil)
implementation(libs.thirdparty.slf4j.api) {
because("SSHJ now uses SLF4J 2.0 which we don't want")