You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+11-7
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,11 @@
14
14
15
15
<!--BEGIN_DESCRIPTION-->
16
16
Use this SDK to add real-time video, audio and data features to your Flutter app. By connecting to a self- or cloud-hosted <ahref="https://livekit.io/">LiveKit</a> server, you can quickly build applications like interactive live streaming or video calls with just a few lines of code.
17
+
18
+
## NOTE
19
+
20
+
Version 2 of the <platform> SDK contains a small set of breaking changes. Read the [migration guide](https://docs.livekit.io/guides/migrate-from-v1/) for a detailed overview of what has changed.
21
+
17
22
<!--END_DESCRIPTION-->
18
23
19
24
This package is published to pub.dev as [livekit_client](https://pub.dev/packages/livekit_client).
@@ -42,6 +47,8 @@ More Docs and guides are available at [https://docs.livekit.io](https://docs.liv
42
47
43
48
We built a multi-user conferencing app as an example in the [example/](example/) folder. You can join the same room from any supported LiveKit clients.
@@ -182,12 +189,6 @@ Note: the audio routing will become controlled by the system and cannot be manua
182
189
183
190
In order to enable Flutter desktop development, please follow [instructions here](https://docs.flutter.dev/desktop#set-up).
184
191
185
-
On M1 Macs, you will also need to install x86_64 version of FFI:
186
-
187
-
```
188
-
sudo arch -x86_64 gem install ffi
189
-
```
190
-
191
192
On Windows [VS 2019](https://visualstudio.microsoft.com/thank-you-downloading-visual-studio/?sku=community&rel=16) is needed (link in flutter docs will download VS 2022).
192
193
193
194
## Usage
@@ -201,7 +202,10 @@ final roomOptions = RoomOptions(
201
202
// ... your room options
202
203
)
203
204
204
-
final room = await LiveKitClient.connect(url, token, roomOptions: roomOptions);
0 commit comments