From c1195e3a0aa597eeb1a537d3d68f4878c7cb0ff0 Mon Sep 17 00:00:00 2001 From: Yoan Pintas Date: Mon, 24 Jun 2024 19:54:55 +0200 Subject: [PATCH] Support Audio call on Neo devices (#1073) --- TCHAP_CHANGES.md | 4 ---- changelog.d/1055.improvements | 1 + vector-app/build.gradle | 2 +- vector/build.gradle | 2 +- .../java/im/vector/app/features/call/webrtc/WebRtcCall.kt | 2 -- 5 files changed, 3 insertions(+), 8 deletions(-) create mode 100644 changelog.d/1055.improvements diff --git a/TCHAP_CHANGES.md b/TCHAP_CHANGES.md index b656acc76e..a68b8aca11 100644 --- a/TCHAP_CHANGES.md +++ b/TCHAP_CHANGES.md @@ -5,10 +5,6 @@ In development 🚧 ---------------- - Fix webrtc SSL connection ([#1071](https://github.com/tchapgouv/tchap-android/issues/1071)) -Changes in Tchap 2.11.10 (2024-06-18) -===================================== - -No significant changes. Changes in Tchap 2.11.9 (2024-06-18) ==================================== diff --git a/changelog.d/1055.improvements b/changelog.d/1055.improvements new file mode 100644 index 0000000000..4f3391056a --- /dev/null +++ b/changelog.d/1055.improvements @@ -0,0 +1 @@ +Support des appels audio sur les appareils Néo. diff --git a/vector-app/build.gradle b/vector-app/build.gradle index 714925f1a8..3ee91a5fbd 100644 --- a/vector-app/build.gradle +++ b/vector-app/build.gradle @@ -37,7 +37,7 @@ ext.versionMinor = 11 // Note: even values are reserved for regular release, odd values for hotfix release. // When creating a hotfix, you should decrease the value, since the current value // is the value for the next regular release. -ext.versionPatch = 10 +ext.versionPatch = 11 static def getGitTimestamp() { def cmd = 'git show -s --format=%ct' diff --git a/vector/build.gradle b/vector/build.gradle index 594b22dfe2..c25eb8db19 100644 --- a/vector/build.gradle +++ b/vector/build.gradle @@ -272,7 +272,7 @@ dependencies { // TCHAP Manage jitsi lib // WebRTC - withdmvoipImplementation('com.github.tchapgouv:webrtc:124.1.3') + withdmvoipImplementation('com.github.tchapgouv:webrtc:124.2.0') // Jitsi withvoipApi('org.jitsi.react:jitsi-meet-sdk:8.1.1') { exclude group: 'com.google.firebase' diff --git a/vector/src/withdmvoip/java/im/vector/app/features/call/webrtc/WebRtcCall.kt b/vector/src/withdmvoip/java/im/vector/app/features/call/webrtc/WebRtcCall.kt index 1d4354765a..9c65d94a94 100644 --- a/vector/src/withdmvoip/java/im/vector/app/features/call/webrtc/WebRtcCall.kt +++ b/vector/src/withdmvoip/java/im/vector/app/features/call/webrtc/WebRtcCall.kt @@ -295,8 +295,6 @@ class WebRtcCall( .builder(uri) .setUsername(server.username) .setPassword(server.password) - // TCHAP bypass SSL verification. See https://groups.google.com/g/discuss-webrtc/c/4MmARU0XYqc/m/QppVNJiEAAAJ - .setTlsCertPolicy(PeerConnection.TlsCertPolicy.TLS_CERT_POLICY_INSECURE_NO_CHECK) .createIceServer() ) }