Skip to content

Commit f93f43b

Browse files
committed
Fix issue with Jitsi compilation
Error was lots of `Duplicate class org.checkerframework.common.reflection.qual.MethodVal found in modules jetified-checker-3.1 (org.checkerframework:checker:3.1.1) and jetified-checker-qual-3.12.0 (org.checkerframework:checker-qual:3.12.0) Cannot use latest 3.15.0 since it required min API 26.
1 parent ac4785a commit f93f43b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

vector/build.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,11 @@ dependencies {
305305
exclude group: "org.jetbrains.kotlinx", module: "kotlinx-coroutines-debug"
306306
}
307307

308+
// Fix issue with Jitsi. Inspired from https://github.com/android/android-test/issues/861#issuecomment-872067868
309+
// Error was lots of `Duplicate class org.checkerframework.common.reflection.qual.MethodVal found in modules jetified-checker-3.1 (org.checkerframework:checker:3.1.1) and jetified-checker-qual-3.12.0 (org.checkerframework:checker-qual:3.12.0)
310+
//noinspection GradleDependency Cannot use latest 3.15.0 since it required min API 26.
311+
implementation "org.checkerframework:checker:3.11.0"
312+
308313
androidTestImplementation libs.androidx.testCore
309314
androidTestImplementation libs.androidx.testRunner
310315
androidTestImplementation libs.androidx.testRules

0 commit comments

Comments
 (0)