Skip to content

Commit b18bd55

Browse files
v2.26.1
1 parent 677433b commit b18bd55

6 files changed

Lines changed: 12 additions & 14 deletions

File tree

.changeset/audioswitch-stale-switch-on-restart.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/dirty-cherries-thank.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# client-sdk-android
22

3+
## 2.26.1
4+
5+
### Patch Changes
6+
7+
- Fix audio output getting stuck on the earpiece after reconnecting on a reused `Room` (Android 12+). `AudioSwitchHandler.stop()` now clears its `audioSwitch` reference synchronously (and the field is `@Volatile`) so a subsequent `start()` reliably observes the teardown and re-creates the switch, instead of racing the posted teardown runnable and reusing a stale, already-stopped switch. - [#967](https://github.com/livekit/client-sdk-android/pull/967) ([@YashJainSC](https://github.com/YashJainSC))
8+
9+
- Emit `TrackSubscriptionFailed` events through `Room` and `RemoteParticipant` when the server detects a subscription failure - [#959](https://github.com/livekit/client-sdk-android/pull/959) ([@davidliu](https://github.com/davidliu))
10+
311
## 2.26.0
412

513
### Minor Changes

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ LiveKit for Android is available as a Maven package.
4747
```groovy title="build.gradle"
4848
...
4949
dependencies {
50-
def livekit_version = "2.26.0"
50+
def livekit_version = "2.26.1"
5151
5252
implementation "io.livekit:livekit-android:$livekit_version"
5353
@@ -58,7 +58,7 @@ dependencies {
5858
implementation "io.livekit:livekit-android-track-processors:$livekit_version"
5959
6060
// Snapshots of the latest development version are available at:
61-
// implementation "io.livekit:livekit-android:2.26.1-SNAPSHOT"
61+
// implementation "io.livekit:livekit-android:2.26.2-SNAPSHOT"
6262
}
6363
```
6464

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ kapt.use.worker.api=true
3333
###############################################################
3434

3535
GROUP=io.livekit
36-
VERSION_NAME=2.26.1-SNAPSHOT
36+
VERSION_NAME=2.26.1
3737

3838
POM_DESCRIPTION=LiveKit Android SDK, WebRTC Rooms
3939

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "client-sdk-android",
3-
"version": "2.26.0",
3+
"version": "2.26.1",
44
"repository": "https://github.com/livekit/client-sdk-android.git",
55
"license": "Apache License 2.0",
66
"private": true,

0 commit comments

Comments
 (0)