davidliu
Committed by GitHub

v2.8.1 (#496)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
---
"client-sdk-android": patch
---
Fix local video tracks not rendering processed frames
---
"client-sdk-android": patch
---
Add utility class NoDropVideoProcessor to force video processing while not connected
---
"client-sdk-android": patch
---
More fixes for crashes caused by using disposed track
# client-sdk-android
## 2.8.1
### Patch Changes
- Fix local video tracks not rendering processed frames - [#495](https://github.com/livekit/client-sdk-android/pull/495) ([@davidliu](https://github.com/davidliu))
- Add utility class NoDropVideoProcessor to force video processing while not connected - [#495](https://github.com/livekit/client-sdk-android/pull/495) ([@davidliu](https://github.com/davidliu))
- More fixes for crashes caused by using disposed track - [#497](https://github.com/livekit/client-sdk-android/pull/497) ([@davidliu](https://github.com/davidliu))
## 2.8.0
### Minor Changes
... ...
... ... @@ -47,14 +47,14 @@ LiveKit for Android is available as a Maven package.
```groovy title="build.gradle"
...
dependencies {
def livekit_version = "2.8.0"
def livekit_version = "2.8.1"
implementation "io.livekit:livekit-android:$livekit_version"
// CameraX support with pinch to zoom, torch control, etc.
implementation "io.livekit:livekit-android-camerax:$livekit_version"
// Snapshots of the latest development version are available at:
// implementation "io.livekit:livekit-android:2.8.1-SNAPSHOT"
// implementation "io.livekit:livekit-android:2.8.2-SNAPSHOT"
}
```
... ...
... ... @@ -23,7 +23,7 @@ kotlin.code.style=official
###############################################################
GROUP=io.livekit
VERSION_NAME=2.8.1-SNAPSHOT
VERSION_NAME=2.8.1
POM_DESCRIPTION=LiveKit Android SDK, WebRTC Rooms
... ...
{
"name": "client-sdk-android",
"version": "2.8.0",
"version": "2.8.1",
"repository": "https://github.com/livekit/client-sdk-android.git",
"license": "Apache License 2.0",
"private": true,
... ...