Skip to content

Commit 253b7b5

Browse files
authored
release: 2.2.4. (#572)
* release: 2.2.4. * update CHANGELOG. * fix compiler error for android.
1 parent 05800e7 commit 253b7b5

File tree

7 files changed

+26
-8
lines changed

7 files changed

+26
-8
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
11
# CHANGELOG
22

3+
## 2.2.4
4+
5+
* fix bug for PlatformView on iOS (#570)
6+
* Deprecated `connectOptions` in `Room` constructor.
7+
* Deprecated `roomOptions` int `room.connect`.
8+
* Added `screenShareEncoding` for `VideoPublishOptions`.
9+
* Change `CameraCaptureOptions.params.encoding` to optional.
10+
It is recommended to use `VideoPublishOptions.videoEncoding/screenShareEncoding`
11+
to control the video sending bitrate.
12+
313
## 2.2.3
414

515
* add PlatformView for iOS (#509)
616
* update lints to 4.0.0. (#563)
717

8-
918
## 2.2.2
1019

1120
* feat: expose DegradationPreference for publish options. (#556)

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ group 'io.livekit.plugin'
22
version '1.0-SNAPSHOT'
33

44
buildscript {
5-
ext.kotlin_version = '1.6.10'
5+
ext.kotlin_version = '1.7.10'
66
repositories {
77
google()
88
mavenCentral()

example/android/build.gradle

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buildscript {
2-
ext.kotlin_version = '1.6.10'
2+
ext.kotlin_version = '1.7.10'
33
repositories {
44
google()
55
jcenter()
@@ -12,6 +12,15 @@ buildscript {
1212
}
1313

1414
allprojects {
15+
afterEvaluate { project ->
16+
if (project.plugins.hasPlugin("com.android.application") ||
17+
project.plugins.hasPlugin("com.android.library")) {
18+
project.android {
19+
compileSdkVersion 34
20+
buildToolsVersion "34.0.0"
21+
}
22+
}
23+
}
1524
repositories {
1625
google()
1726
jcenter()

ios/livekit_client.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'livekit_client'
3-
s.version = '2.2.3'
3+
s.version = '2.2.4'
44
s.summary = 'Open source platform for real-time audio and video.'
55
s.description = 'Open source platform for real-time audio and video.'
66
s.homepage = 'https://livekit.io/'

lib/src/livekit.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
/// Main entry point to connect to a room.
1616
/// {@category Room}
1717
class LiveKitClient {
18-
static const version = '2.2.3';
18+
static const version = '2.2.4';
1919
}

macos/livekit_client.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'livekit_client'
3-
s.version = '2.2.3'
3+
s.version = '2.2.4'
44
s.summary = 'Open source platform for real-time audio and video.'
55
s.description = 'Open source platform for real-time audio and video.'
66
s.homepage = 'https://livekit.io/'

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
name: livekit_client
1616
description: Flutter Client SDK for LiveKit.
1717
Build real-time video and audio into your apps. Supports iOS, Android, and Web.
18-
version: 2.2.3
18+
version: 2.2.4
1919
homepage: https://github.com/livekit/client-sdk-flutter
2020

2121
environment:
@@ -37,7 +37,7 @@ dependencies:
3737
uuid: '>=3.0.6'
3838
synchronized: ^3.0.0+3
3939
protobuf: ^3.0.0
40-
flutter_webrtc: ^0.11.6
40+
flutter_webrtc: ^0.11.6+hotfix.1
4141
device_info_plus: '>=8.0.0'
4242
js: '>=0.6.4'
4343
platform_detect: ^2.0.7

0 commit comments

Comments
 (0)