davidliu
Committed by GitHub

v2.19.0 (#726)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
---
"client-sdk-android": patch
---
Fix IllegalStateException when switchCamera of localVideoTrack
---
"client-sdk-android": patch
---
Make blurRadius in the VirtualBackgroundTransformer variable to allow for dynamically changing the value.
---
"client-sdk-android": minor
---
Add types for agent and transcription attributes
---
"client-sdk-android": patch
---
Add sendText and sendFile helper methods to LocalParticipant for ease of use
---
"client-sdk-android": patch
---
Add default name of "unknown" for StreamByteOptions to allow for no-arg construction
---
"client-sdk-android": minor
---
Update libwebrtc to 137.7151.01
# client-sdk-android
## 2.19.0
### Minor Changes
- Add types for agent and transcription attributes - [#733](https://github.com/livekit/client-sdk-android/pull/733) ([@davidliu](https://github.com/davidliu))
- Update libwebrtc to 137.7151.01 - [#727](https://github.com/livekit/client-sdk-android/pull/727) ([@davidliu](https://github.com/davidliu))
### Patch Changes
- Fix IllegalStateException when switchCamera of localVideoTrack - [#725](https://github.com/livekit/client-sdk-android/pull/725) ([@binkos](https://github.com/binkos))
- Make blurRadius in the VirtualBackgroundTransformer variable to allow for dynamically changing the value. - [#731](https://github.com/livekit/client-sdk-android/pull/731) ([@binkos](https://github.com/binkos))
- Add sendText and sendFile helper methods to LocalParticipant for ease of use - [#732](https://github.com/livekit/client-sdk-android/pull/732) ([@davidliu](https://github.com/davidliu))
- Add default name of "unknown" for StreamByteOptions to allow for no-arg construction - [#732](https://github.com/livekit/client-sdk-android/pull/732) ([@davidliu](https://github.com/davidliu))
## 2.18.3
### Patch Changes
... ...
... ... @@ -47,7 +47,7 @@ LiveKit for Android is available as a Maven package.
```groovy title="build.gradle"
...
dependencies {
def livekit_version = "2.18.3"
def livekit_version = "2.19.0"
implementation "io.livekit:livekit-android:$livekit_version"
... ... @@ -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.18.4-SNAPSHOT"
// implementation "io.livekit:livekit-android:2.19.1-SNAPSHOT"
}
```
... ...
... ... @@ -23,7 +23,7 @@ kotlin.code.style=official
###############################################################
GROUP=io.livekit
VERSION_NAME=2.18.4-SNAPSHOT
VERSION_NAME=2.19.0
POM_DESCRIPTION=LiveKit Android SDK, WebRTC Rooms
... ...
{
"name": "client-sdk-android",
"version": "2.18.3",
"version": "2.19.0",
"repository": "https://github.com/livekit/client-sdk-android.git",
"license": "Apache License 2.0",
"private": true,
... ...