From 80a6823af496e75e95cab8762250d01d64c51e70 Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Wed, 10 Feb 2021 16:55:07 +0100 Subject: [PATCH] Remove transitive dependency --- docs/jitsi.md | 2 +- vector/build.gradle | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/jitsi.md b/docs/jitsi.md index ae0e825d08..389e7d71ec 100644 --- a/docs/jitsi.md +++ b/docs/jitsi.md @@ -43,7 +43,7 @@ You can uncomment and update the line starting with `// url "file://...` and com - Update the dependency of the Jitsi Meet library in the file `./vector/build.gradle`. Currently we have this line: ```groovy -implementation('org.jitsi.react:jitsi-meet-sdk:3.1.0') { transitive = true } +implementation('org.jitsi.react:jitsi-meet-sdk:3.1.0') ``` - Update the dependency of the WebRTC library in the file `./vector/build.gradle`. Currently we have this line: diff --git a/vector/build.gradle b/vector/build.gradle index 530cb689ca..cc4efb4590 100644 --- a/vector/build.gradle +++ b/vector/build.gradle @@ -435,10 +435,11 @@ dependencies { // WebRTC // org.webrtc:google-webrtc is for development purposes only // implementation 'org.webrtc:google-webrtc:1.0.+' - implementation('org.jitsi.react:jitsi-meet-sdk:3.1.0') { transitive = true } - // Transitive dependency from Jitsi, but explicitly declare it implementation('com.facebook.react:react-native-webrtc:1.87.3-jitsi-6624067@aar') + // Jitsi + implementation('org.jitsi.react:jitsi-meet-sdk:3.1.0') + // QR-code // Stick to 3.3.3 because of https://github.com/zxing/zxing/issues/1170 implementation 'com.google.zxing:core:3.3.3'