davidliu
Committed by GitHub

v2.10.0 (#529)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
---
"client-sdk-android": minor
---
Implement custom audio mixing into audio track
---
"client-sdk-android": minor
---
Update to webrtc-sdk 125.6422.06.1
---
"client-sdk-android": minor
---
Implement screen share audio capturer
# client-sdk-android
## 2.10.0
### Minor Changes
- Implement custom audio mixing into audio track - [#528](https://github.com/livekit/client-sdk-android/pull/528) ([@davidliu](https://github.com/davidliu))
- Update to webrtc-sdk 125.6422.06.1 - [#528](https://github.com/livekit/client-sdk-android/pull/528) ([@davidliu](https://github.com/davidliu))
- Implement screen share audio capturer - [#528](https://github.com/livekit/client-sdk-android/pull/528) ([@davidliu](https://github.com/davidliu))
## 2.9.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.9.0"
def livekit_version = "2.10.0"
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.9.1-SNAPSHOT"
// implementation "io.livekit:livekit-android:2.10.1-SNAPSHOT"
}
```
... ...
... ... @@ -23,7 +23,7 @@ kotlin.code.style=official
###############################################################
GROUP=io.livekit
VERSION_NAME=2.9.1-SNAPSHOT
VERSION_NAME=2.10.0
POM_DESCRIPTION=LiveKit Android SDK, WebRTC Rooms
... ...
{
"name": "client-sdk-android",
"version": "2.9.0",
"version": "2.10.0",
"repository": "https://github.com/livekit/client-sdk-android.git",
"license": "Apache License 2.0",
"private": true,
... ...