File tree Expand file tree Collapse file tree 6 files changed +21
-6
lines changed Expand file tree Collapse file tree 6 files changed +21
-6
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
+ ## 1.1.9
4
+
5
+ * Bump flutter-webrtc to 0.9.17
6
+ * Enable BroadCastExtension for iOS in example.
7
+
3
8
## 1.1.8
4
9
5
10
* Fix resume/full-reconnect.
Original file line number Diff line number Diff line change @@ -171,6 +171,16 @@ class _ControlsWidgetState extends State<ControlsWidget> {
171
171
print ('could not publish video: $e ' );
172
172
}
173
173
}
174
+ if (WebRTC .platformIsIOS) {
175
+ var track = await LocalVideoTrack .createScreenShareTrack (
176
+ const ScreenShareCaptureOptions (
177
+ useiOSBroadcastExtension: true ,
178
+ maxFrameRate: 15.0 ,
179
+ ),
180
+ );
181
+ await participant.publishVideoTrack (track);
182
+ return ;
183
+ }
174
184
await participant.setScreenShareEnabled (true , captureScreenAudio: true );
175
185
}
176
186
Original file line number Diff line number Diff line change @@ -225,7 +225,7 @@ packages:
225
225
name: flutter_webrtc
226
226
url: "https://pub.dartlang.org"
227
227
source: hosted
228
- version: "0.9.14 "
228
+ version: "0.9.17 "
229
229
google_fonts:
230
230
dependency: "direct main"
231
231
description:
@@ -274,7 +274,7 @@ packages:
274
274
path: ".."
275
275
relative: true
276
276
source: path
277
- version: "1.1.7 "
277
+ version: "1.1.9 "
278
278
logging:
279
279
dependency: "direct main"
280
280
description:
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import 'types/other.dart';
5
5
/// Main entry point to connect to a room.
6
6
/// {@category Room}
7
7
class LiveKitClient {
8
- static const version = '1.0.0 ' ;
8
+ static const version = '1.1.9 ' ;
9
9
10
10
/// Convenience method for connecting to a LiveKit server.
11
11
/// Returns a [Room] upon a successful connect or throws when it fails.
Original file line number Diff line number Diff line change @@ -260,7 +260,7 @@ packages:
260
260
name: flutter_webrtc
261
261
url: "https://pub.dartlang.org"
262
262
source: hosted
263
- version: "0.9.14 "
263
+ version: "0.9.17 "
264
264
glob:
265
265
dependency: transitive
266
266
description:
Original file line number Diff line number Diff line change 1
1
name : livekit_client
2
2
description : Flutter Client SDK for LiveKit.
3
3
Build real-time video and audio into your apps. Supports iOS, Android, and Web.
4
- version : 1.1.8
4
+ version : 1.1.9
5
5
homepage : https://livekit.io
6
6
7
7
environment :
@@ -23,7 +23,7 @@ dependencies:
23
23
uuid : ^3.0.6
24
24
synchronized : ^3.0.0+3
25
25
protobuf : ^2.1.0
26
- flutter_webrtc : 0.9.14
26
+ flutter_webrtc : 0.9.17
27
27
dart_webrtc : 1.0.11
28
28
device_info_plus : ^6.0.0
29
29
webrtc_interface : 1.0.10
You can’t perform that action at this time.
0 commit comments