Remove transitive dependency

This commit is contained in:
Benoit Marty 2021-02-10 16:55:07 +01:00
parent 476348d961
commit 80a6823af4
2 changed files with 4 additions and 3 deletions

View File

@ -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: - Update the dependency of the Jitsi Meet library in the file `./vector/build.gradle`. Currently we have this line:
```groovy ```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: - Update the dependency of the WebRTC library in the file `./vector/build.gradle`. Currently we have this line:

View File

@ -435,10 +435,11 @@ dependencies {
// WebRTC // WebRTC
// org.webrtc:google-webrtc is for development purposes only // org.webrtc:google-webrtc is for development purposes only
// implementation 'org.webrtc:google-webrtc:1.0.+' // 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') 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 // QR-code
// Stick to 3.3.3 because of https://github.com/zxing/zxing/issues/1170 // Stick to 3.3.3 because of https://github.com/zxing/zxing/issues/1170
implementation 'com.google.zxing:core:3.3.3' implementation 'com.google.zxing:core:3.3.3'