davidliu
Committed by GitHub

v2.11.0 (#539)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
---
"client-sdk-android": patch
---
Add AudioPresets and increase default audio max bitrate to 48kbps
---
"client-sdk-android": patch
---
Fix crash when setting publishing layers
---
"client-sdk-android": minor
---
Add use cases to CameraX createCameraProvider
---
"client-sdk-android": minor
---
Detect rotation for screenshare tracks
---
"client-sdk-android": minor
---
Default to scaling and cropping camera output to fit desired dimensions
* This behavior may be turned off through the `VideoCaptureParams.adaptOutputToDimensions`
---
"client-sdk-android": patch
---
Added VideoFrameCapturer for pushing video frames directly
---
"client-sdk-android": patch
---
Fix surface causing null pointer exception on some devices
---
"client-sdk-android": patch
---
Update Kotlin dependency to 1.9.25
---
"client-sdk-android": minor
---
Add separate default capture/publish options for screenshare tracks
# client-sdk-android
## 2.11.0
### Minor Changes
- Add use cases to CameraX createCameraProvider - [#536](https://github.com/livekit/client-sdk-android/pull/536) ([@KasemJaffer](https://github.com/KasemJaffer))
- Detect rotation for screenshare tracks - [#552](https://github.com/livekit/client-sdk-android/pull/552) ([@davidliu](https://github.com/davidliu))
- Default to scaling and cropping camera output to fit desired dimensions - [#558](https://github.com/livekit/client-sdk-android/pull/558) ([@davidliu](https://github.com/davidliu))
- This behavior may be turned off through the `VideoCaptureParams.adaptOutputToDimensions`
- Add separate default capture/publish options for screenshare tracks - [#552](https://github.com/livekit/client-sdk-android/pull/552) ([@davidliu](https://github.com/davidliu))
### Patch Changes
- Add AudioPresets and increase default audio max bitrate to 48kbps - [#551](https://github.com/livekit/client-sdk-android/pull/551) ([@davidliu](https://github.com/davidliu))
- Fix crash when setting publishing layers - [#559](https://github.com/livekit/client-sdk-android/pull/559) ([@davidliu](https://github.com/davidliu))
- Added VideoFrameCapturer for pushing video frames directly - [#538](https://github.com/livekit/client-sdk-android/pull/538) ([@davidliu](https://github.com/davidliu))
- Fix surface causing null pointer exception on some devices - [#544](https://github.com/livekit/client-sdk-android/pull/544) ([@KasemJaffer](https://github.com/KasemJaffer))
- Update Kotlin dependency to 1.9.25 - [#552](https://github.com/livekit/client-sdk-android/pull/552) ([@davidliu](https://github.com/davidliu))
## 2.10.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.10.0"
def livekit_version = "2.11.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.10.1-SNAPSHOT"
// implementation "io.livekit:livekit-android:2.11.1-SNAPSHOT"
}
```
... ...
... ... @@ -23,7 +23,7 @@ kotlin.code.style=official
###############################################################
GROUP=io.livekit
VERSION_NAME=2.10.1-SNAPSHOT
VERSION_NAME=2.11.0
POM_DESCRIPTION=LiveKit Android SDK, WebRTC Rooms
... ...
{
"name": "client-sdk-android",
"version": "2.10.0",
"version": "2.11.0",
"repository": "https://github.com/livekit/client-sdk-android.git",
"license": "Apache License 2.0",
"private": true,
... ...