Skip to content

Commit

Permalink
chore: update libwebrtc-bin
Browse files Browse the repository at this point in the history
  • Loading branch information
evdokimovs committed Nov 21, 2024
1 parent ad632f5 commit 3aa4498
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
2 changes: 1 addition & 1 deletion crates/libwebrtc-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
12 changes: 6 additions & 6 deletions crates/libwebrtc-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down Expand Up @@ -124,19 +124,19 @@ fn get_target() -> anyhow::Result<String> {
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}")),
})
Expand Down
4 changes: 2 additions & 2 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
@@ -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`)
Expand Down
2 changes: 1 addition & 1 deletion ios/medea_flutter_webrtc.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 3aa4498

Please sign in to comment.