Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ let package = Package(
dependencies: [
.package(name: "FlutterFramework", path: "../FlutterFramework"),
.package(
url: "https://github.com/GetStream/stream-video-swift-webrtc.git", exact: "145.9.0"
url: "https://github.com/GetStream/stream-video-swift-webrtc.git", exact: "148.0.0"
)
],
targets: [
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ if (kotlinExt?.hasProperty('compilerOptions')) {
}

dependencies {
implementation("io.getstream:stream-video-webrtc-android:145.9.0")
implementation("io.getstream:stream-video-webrtc-android:148.0.1-SNAPSHOT")
implementation 'com.github.davidliu:audioswitch:89582c47c9a04c62f90aa5e57251af4800a62c9a'
implementation 'androidx.annotation:annotation:1.1.0'
}
2 changes: 1 addition & 1 deletion ios/stream_webrtc_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ A new flutter plugin project.
s.vendored_frameworks = 'Frameworks/StreamWebRTC.xcframework'
s.prepare_command = <<-CMD
mkdir -p Frameworks/
curl -sL "https://github.com/GetStream/stream-video-swift-webrtc/releases/download/145.9.0/StreamWebRTC.xcframework.zip" -o Frameworks/StreamWebRTC.zip
curl -sL "https://github.com/GetStream/stream-video-swift-webrtc/releases/download/148.0.0/StreamWebRTC.xcframework.zip" -o Frameworks/StreamWebRTC.zip
unzip -o Frameworks/StreamWebRTC.zip -d Frameworks/
rm Frameworks/StreamWebRTC.zip
CMD
Expand Down
2 changes: 1 addition & 1 deletion ios/stream_webrtc_flutter/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ let package = Package(
dependencies: [
.package(name: "FlutterFramework", path: "../FlutterFramework"),
.package(
url: "https://github.com/GetStream/stream-video-swift-webrtc.git", exact: "145.9.0"
url: "https://github.com/GetStream/stream-video-swift-webrtc.git", exact: "148.0.0"
)
],
targets: [
Expand Down
6 changes: 3 additions & 3 deletions lib/stream_webrtc_flutter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ export 'src/native/ios/audio_management.dart';
export 'src/native/rtc_video_platform_view_controller.dart';
export 'src/native/rtc_video_platform_view.dart';

const String androidWebRTCVersion = '145.9.0';
const String iosWebRTCVersion = '145.9.0';
const String macOsWebRTCVersion = '145.9.0';
const String androidWebRTCVersion = '148.0.0';
const String iosWebRTCVersion = '148.0.0';
const String macOsWebRTCVersion = '148.0.0';
const String windowsWebRTCVersion = '144.7559.09';
const String linuxWebRTCVersion = '144.7559.09';
2 changes: 1 addition & 1 deletion macos/stream_webrtc_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ A new flutter plugin project.
s.vendored_frameworks = 'Frameworks/StreamWebRTC.xcframework'
s.prepare_command = <<-CMD
mkdir -p Frameworks/
curl -sL "https://github.com/GetStream/stream-video-swift-webrtc/releases/download/145.9.0/StreamWebRTC.xcframework.zip" -o Frameworks/StreamWebRTC.zip
curl -sL "https://github.com/GetStream/stream-video-swift-webrtc/releases/download/148.0.0/StreamWebRTC.xcframework.zip" -o Frameworks/StreamWebRTC.zip
unzip -o Frameworks/StreamWebRTC.zip -d Frameworks/
rm Frameworks/StreamWebRTC.zip
CMD
Expand Down
2 changes: 1 addition & 1 deletion macos/stream_webrtc_flutter/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ let package = Package(
dependencies: [
.package(name: "FlutterFramework", path: "../FlutterFramework"),
.package(
url: "https://github.com/GetStream/stream-video-swift-webrtc.git", exact: "145.9.0"
url: "https://github.com/GetStream/stream-video-swift-webrtc.git", exact: "148.0.0"
)
],
targets: [
Expand Down
Loading