diff --git a/Cargo.lock b/Cargo.lock index 99ed1b207d..46350033c2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -813,7 +813,7 @@ dependencies = [ [[package]] name = "libwebrtc-sys" -version = "0.0.0+130.0.6723.69" +version = "0.0.0+131.0.6778.69" dependencies = [ "anyhow", "cxx", diff --git a/README.md b/README.md index e494126ace..946f55b9b9 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Medea Flutter-WebRTC ==================== [![pub](https://img.shields.io/pub/v/medea_flutter_webrtc "pub")](https://pub.dev/packages/medea_flutter_webrtc) -[![libwebrtc](https://img.shields.io/badge/libwebrtc-130.0.6723.69-blue "libwebrtc")](https://github.com/instrumentisto/libwebrtc-bin/releases/tag/130.0.6723.69) +[![libwebrtc](https://img.shields.io/badge/libwebrtc-131.0.6778.69-blue "libwebrtc")](https://github.com/instrumentisto/libwebrtc-bin/releases/tag/131.0.6778.69) [![OpenAL](https://img.shields.io/badge/OpenAL-1.24.0-blue "OpenAL")](https://github.com/kcat/openal-soft/releases/tag/1.24.0) [Changelog](https://github.com/instrumentisto/medea-flutter-webrtc/blob/main/CHANGELOG.md) diff --git a/android/build.gradle b/android/build.gradle index d47de37166..888f25c131 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -60,7 +60,7 @@ android { } dependencies { - implementation 'com.github.instrumentisto:libwebrtc-bin:130.0.6723.69@aar' + implementation 'com.github.instrumentisto:libwebrtc-bin:131.0.6778.69@aar' implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4' } diff --git a/crates/libwebrtc-sys/Cargo.toml b/crates/libwebrtc-sys/Cargo.toml index 511a76a4d8..4b6e3b8d48 100644 --- a/crates/libwebrtc-sys/Cargo.toml +++ b/crates/libwebrtc-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libwebrtc-sys" -version = "0.0.0+130.0.6723.69" +version = "0.0.0+131.0.6778.69" edition = "2021" rust-version = "1.81" publish = false diff --git a/crates/libwebrtc-sys/build.rs b/crates/libwebrtc-sys/build.rs index 76c4959b8b..72a1fde116 100644 --- a/crates/libwebrtc-sys/build.rs +++ b/crates/libwebrtc-sys/build.rs @@ -27,7 +27,7 @@ use walkdir::{DirEntry, WalkDir}; /// [`libwebrtc-bin`]: https://github.com/instrumentisto/libwebrtc-bin static LIBWEBRTC_URL: &str = "https://github.com/instrumentisto/libwebrtc-bin/releases/download\ - /130.0.6723.69"; + /131.0.6778.69"; /// URL for downloading `openal-soft` source code. static OPENAL_URL: &str = @@ -124,19 +124,19 @@ fn get_target() -> anyhow::Result { fn get_expected_libwebrtc_hash() -> anyhow::Result<&'static str> { Ok(match get_target()?.as_str() { "aarch64-unknown-linux-gnu" => { - "7c920c99ad312469e0577c4764eb1fbf4b66fd5c82cb32bc3d2267f6dd387b4d" + "d003c0dd1cc9b0701e6f381aaea622bd20d9d58f9be0cdc6597f2419e78364ff" } "x86_64-unknown-linux-gnu" => { - "7a4c730ed7921f02f8b5af42131417fe18c586c139cf2c1ba84601ece168ddad" + "a23cd4ab1813db5217bbd9e1b8e78d9c5f4e6ec3b1097c079188e5a6bbd60261" } "aarch64-apple-darwin" => { - "deb83f7396d2138862fd06993b4f77b587c41a7766b7099e51d16e60180fb24a" + "4c9cf6ec2a554a8cf792dcdb483ef3561606a4cc9cc7754f0739e3f49122d279" } "x86_64-apple-darwin" => { - "cc2523cde784b9089b05a6162a0c871733870ecc22f391d0080b8c2be4cf8616" + "b53523c608956951f73e45cc62e9db5e700179551d7384269c348589ec7dc2a6" } "x86_64-pc-windows-msvc" => { - "c3792497acbae8c29d68bd4e01d9551dc8fbc573edc8169112d1a6a58135c4a3" + "cdbbbc6823efef0184fbafdd807cb4390d6ac231393cd057e9a8cd9bde6a7006" } arch => return Err(anyhow::anyhow!("Unsupported target: {arch}")), }) diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index e1cb3390a8..a811f1efce 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -1,11 +1,11 @@ PODS: - Flutter (1.0.0) - - instrumentisto-libwebrtc-bin (130.0.6723.69) + - instrumentisto-libwebrtc-bin (131.0.6778.69) - integration_test (0.0.1): - Flutter - medea_flutter_webrtc (0.11.2): - Flutter - - instrumentisto-libwebrtc-bin (= 130.0.6723.69) + - instrumentisto-libwebrtc-bin (= 131.0.6778.69) DEPENDENCIES: - Flutter (from `Flutter`) diff --git a/ios/medea_flutter_webrtc.podspec b/ios/medea_flutter_webrtc.podspec index e7744a95dc..4a31e8f86e 100644 --- a/ios/medea_flutter_webrtc.podspec +++ b/ios/medea_flutter_webrtc.podspec @@ -15,7 +15,7 @@ Flutter WebRTC plugin based on Google WebRTC. s.source = { :path => '.' } s.source_files = 'Classes/**/*' s.dependency 'Flutter' - s.dependency 'instrumentisto-libwebrtc-bin', '130.0.6723.69' + s.dependency 'instrumentisto-libwebrtc-bin', '131.0.6778.69' s.platform = :ios, '13.0' s.static_framework = true