Skip to content

Commit 448bf40

Browse files
authored
Merge pull request #23 from GetStream/chore/sync_0.13.1+hotfix.1
chore: sync with flutter_webrtc v0.13.1+hotfix.1
2 parents 236da14 + 16c34c9 commit 448bf40

File tree

5 files changed

+9
-3
lines changed

5 files changed

+9
-3
lines changed

Diff for: CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11

22
# Changelog
33

4+
[1.0.3] - 2025-04-08
5+
* Synced flutter-webrtc v0.13.1+hotfix.1
6+
* [Android] fix: Fix `clearAndroidCommunicationDevice` call blocking.
7+
* [Android] Fixed orientation aware screen sharing to work with landscape-first devices
8+
49
[1.0.2] - 2025-03-03
510
* Synced flutter-webrtc v0.13.1
611
* [Android] fix: remove setPreferredInputDevice when getUserAduio. (#1808)

Diff for: android/src/main/java/io/getstream/webrtc/flutter/MethodCallHandlerImpl.java

+1
Original file line numberDiff line numberDiff line change
@@ -719,6 +719,7 @@ public void onMethodCall(MethodCall call, @NonNull Result notSafeResult) {
719719
}
720720
case "clearAndroidCommunicationDevice": {
721721
AudioSwitchManager.instance.clearCommunicationDevice();
722+
result.success(null);
722723
break;
723724
}
724725
case "setMicrophoneMute":

Diff for: ios/stream_webrtc_flutter.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
Pod::Spec.new do |s|
55
s.name = 'stream_webrtc_flutter'
6-
s.version = '1.0.2'
6+
s.version = '1.0.3'
77
s.summary = 'Flutter WebRTC plugin for iOS.'
88
s.description = <<-DESC
99
A new flutter plugin project.

Diff for: macos/stream_webrtc_flutter.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
Pod::Spec.new do |s|
55
s.name = 'stream_webrtc_flutter'
6-
s.version = '1.0.2'
6+
s.version = '1.0.3'
77
s.summary = 'Flutter WebRTC plugin for macOS.'
88
s.description = <<-DESC
99
A new flutter plugin project.

Diff for: pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: stream_webrtc_flutter
22
description: Flutter WebRTC plugin for iOS/Android/Destkop/Web, based on GoogleWebRTC.
3-
version: 1.0.2
3+
version: 1.0.3
44
homepage: https://github.com/GetStream/webrtc-flutter
55
environment:
66
sdk: ">=3.3.0 <4.0.0"

0 commit comments

Comments
 (0)