excluding jitsi's android-scalablevideoview fork's support library
- The library exports a jetified artifact but doesn't remove the support library dependency /home/adam/dev/element/element-android/vector/build.gradle
This commit is contained in:
parent
c61df899b4
commit
4e99217164
|
@ -100,7 +100,6 @@ android {
|
||||||
viewBinding true
|
viewBinding true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(":vector-config")
|
implementation project(":vector-config")
|
||||||
api project(":matrix-sdk-android")
|
api project(":matrix-sdk-android")
|
||||||
|
@ -240,6 +239,19 @@ dependencies {
|
||||||
// implementation 'org.webrtc:google-webrtc:1.0.+'
|
// implementation 'org.webrtc:google-webrtc:1.0.+'
|
||||||
implementation('com.facebook.react:react-native-webrtc:1.94.2-jitsi-10227332@aar')
|
implementation('com.facebook.react:react-native-webrtc:1.94.2-jitsi-10227332@aar')
|
||||||
|
|
||||||
|
// Exclude jitsi's android-scalablevideoview fork's support library
|
||||||
|
// The library exports a jetified artifact but doesn't remove the support library dependency
|
||||||
|
// https://github.com/MatrixFrog/Android-ScalableVideoView/blob/master/gradle.properties#L1
|
||||||
|
components {
|
||||||
|
withModule("com.github.MatrixFrog:android-scalablevideoview") {
|
||||||
|
allVariants {
|
||||||
|
withDependencies {
|
||||||
|
removeAll { it.group == "com.android.support" && it.name == "appcompat-v7" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Jitsi
|
// Jitsi
|
||||||
api('org.jitsi.react:jitsi-meet-sdk:5.0.2') {
|
api('org.jitsi.react:jitsi-meet-sdk:5.0.2') {
|
||||||
exclude group: 'com.google.firebase'
|
exclude group: 'com.google.firebase'
|
||||||
|
@ -247,6 +259,7 @@ dependencies {
|
||||||
exclude group: 'com.android.installreferrer'
|
exclude group: 'com.android.installreferrer'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// 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'
|
||||||
|
|
Loading…
Reference in New Issue