File tree 4 files changed +10
-5
lines changed
4 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
+ ## 1.1.1-hotfix
4
+
5
+ * Fix compilation error caused by webrtc-interface version jumping.
6
+
3
7
## 1.1.1
4
8
5
9
* Add hardware api for camera and audio input/output selection.
Original file line number Diff line number Diff line change @@ -281,7 +281,7 @@ packages:
281
281
path: ".."
282
282
relative: true
283
283
source: path
284
- version: "1.1.1"
284
+ version: "1.1.1-hotifx "
285
285
logging:
286
286
dependency: "direct main"
287
287
description:
Original file line number Diff line number Diff line change @@ -134,13 +134,13 @@ abstract class EventsListenable<T> extends Disposable {
134
134
_listeners.add (listener);
135
135
136
136
// make a cancel func to cancel listening and remove from list in 1 call
137
- _cancelFunc () async {
137
+ cancelFunc () async {
138
138
await listener.cancel ();
139
139
_listeners.remove (listener);
140
140
logger.fine ('${objectId } event was cancelled by func' );
141
141
}
142
142
143
- return _cancelFunc ;
143
+ return cancelFunc ;
144
144
}
145
145
146
146
// convenience method to listen & filter a specific event type
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.1
4
+ version : 1.1.1-hotfix
5
5
homepage : https://livekit.io
6
6
7
7
environment :
@@ -15,6 +15,7 @@ dependencies:
15
15
sdk : flutter
16
16
async : ^2.6.1
17
17
collection : ^1.15.0
18
+ connectivity_plus : ^2.3.6+1
18
19
fixnum : ^1.0.1
19
20
meta : ^1.3.0
20
21
http : ^0.13.3
@@ -25,7 +26,7 @@ dependencies:
25
26
flutter_webrtc : 0.9.4
26
27
dart_webrtc : 1.0.7
27
28
device_info_plus : ^3.2.3
28
- connectivity_plus : ^2.3.6+1
29
+ webrtc_interface : 1.0.7
29
30
30
31
dev_dependencies :
31
32
flutter_test :
You can’t perform that action at this time.
0 commit comments