Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/calm-pears-refuse.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/five-games-rescue.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-audio-focus-abandon-pre-o.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-byte-stream-source-leak.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-camera-events-dispatch-race.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-room-connect-failure-state.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-signal-client-volatile.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/gold-countries-flow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/gold-eggs-lick.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hip-dingos-shop.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lovely-snails-crash.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/two-sloths-tan.md

This file was deleted.

28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# client-sdk-android

## 2.23.2

### Patch Changes

- Fix exception when parsing AgentAttribute inputs and outputs - [#847](https://github.com/livekit/client-sdk-android/pull/847) ([@davidliu](https://github.com/davidliu))

- Properly reset network callback manager after disconnect - [#841](https://github.com/livekit/client-sdk-android/pull/841) ([@davidliu](https://github.com/davidliu))

- Fixed audio focus not being abandoned on pre-O devices due to mismatched listener instance. - [#837](https://github.com/livekit/client-sdk-android/pull/837) ([@adrian-niculescu](https://github.com/adrian-niculescu))

- Fixed file descriptor leak in ByteStreamSender where Source was not closed after reading. - [#839](https://github.com/livekit/client-sdk-android/pull/839) ([@adrian-niculescu](https://github.com/adrian-niculescu))

- Fixed data race in `CameraEventsDispatchHandler` by using `CopyOnWriteArraySet` for thread-safe iteration. - [#822](https://github.com/livekit/client-sdk-android/pull/822) ([@adrian-niculescu](https://github.com/adrian-niculescu))

- Fixed Room getting stuck in CONNECTING state after failed connect attempts. - [#836](https://github.com/livekit/client-sdk-android/pull/836) ([@adrian-niculescu](https://github.com/adrian-niculescu))

- Fix thread visibility issues in SignalClient that could cause messages to be silently dropped. - [#819](https://github.com/livekit/client-sdk-android/pull/819) ([@adrian-niculescu](https://github.com/adrian-niculescu))

- Fix race condition when sending sync state before tracks are subscribed - [#831](https://github.com/livekit/client-sdk-android/pull/831) ([@davidliu](https://github.com/davidliu))

- Don't throw on invalid values for Agent enum types - [#847](https://github.com/livekit/client-sdk-android/pull/847) ([@davidliu](https://github.com/davidliu))

- Add overload for TokenSource.fromEndpoint that accepts a string for the url - [#844](https://github.com/livekit/client-sdk-android/pull/844) ([@davidliu](https://github.com/davidliu))

- Fixed screen sharing with VP9/AV1 codecs - [#828](https://github.com/livekit/client-sdk-android/pull/828) ([@pblazej](https://github.com/pblazej))

- Proguard rule optimizations - [#803](https://github.com/livekit/client-sdk-android/pull/803) ([@davidliu](https://github.com/davidliu))

## 2.23.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ LiveKit for Android is available as a Maven package.
```groovy title="build.gradle"
...
dependencies {
def livekit_version = "2.23.1"
def livekit_version = "2.23.2"

implementation "io.livekit:livekit-android:$livekit_version"

Expand All @@ -58,7 +58,7 @@ dependencies {
implementation "io.livekit:livekit-android-track-processors:$livekit_version"

// Snapshots of the latest development version are available at:
// implementation "io.livekit:livekit-android:2.23.2-SNAPSHOT"
// implementation "io.livekit:livekit-android:2.23.3-SNAPSHOT"
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ kotlin.code.style=official
###############################################################

GROUP=io.livekit
VERSION_NAME=2.23.2-SNAPSHOT
VERSION_NAME=2.23.2

POM_DESCRIPTION=LiveKit Android SDK, WebRTC Rooms

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "client-sdk-android",
"version": "2.23.1",
"version": "2.23.2",
"repository": "https://github.com/livekit/client-sdk-android.git",
"license": "Apache License 2.0",
"private": true,
Expand Down