Skip to content

Commit 4027e11

Browse files
committed
Exclude transitive dependencies from Tink
It was pulling in errorprone and findbugs and etc
1 parent 2f320ea commit 4027e11

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ apply(from = "$rootDir/config/quality.gradle.kts")
4242
dependencies {
4343
implementation("com.jcraft:jzlib:1.1.3")
4444
implementation("org.connectbot:simplesocks:1.0.1")
45-
implementation("com.google.crypto.tink:tink:1.12.0")
45+
implementation("com.google.crypto.tink:tink:1.12.0") {
46+
isTransitive = false
47+
}
4648
implementation("org.connectbot:jbcrypt:1.0.2")
4749

4850
testImplementation("junit:junit:4.13.2")

0 commit comments

Comments
 (0)