davidliu
Committed by GitHub

v2.17.0 (#679)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
---
"client-sdk-android": patch
---
Fix switchCamera not working if the camera id is physical id
---
"client-sdk-android": patch
---
Fix sending pre-connect audio data when byte buffer has backing array
---
"client-sdk-android": patch
---
Specify default values for StreamTextOptions and streamText
---
"client-sdk-android": minor
---
Change isMicrophoneEnabled, isCameraEnabled, isScreenshareEnabled to FlowObservable variables
# client-sdk-android
## 2.17.0
### Minor Changes
- Change isMicrophoneEnabled, isCameraEnabled, isScreenshareEnabled to FlowObservable variables - [#685](https://github.com/livekit/client-sdk-android/pull/685) ([@davidliu](https://github.com/davidliu))
### Patch Changes
- Fix switchCamera not working if the camera id is physical id - [#676](https://github.com/livekit/client-sdk-android/pull/676) ([@KasemJaffer](https://github.com/KasemJaffer))
- Fix sending pre-connect audio data when byte buffer has backing array - [#678](https://github.com/livekit/client-sdk-android/pull/678) ([@davidliu](https://github.com/davidliu))
- Specify default values for StreamTextOptions and streamText - [#688](https://github.com/livekit/client-sdk-android/pull/688) ([@davidliu](https://github.com/davidliu))
## 2.16.0
### Minor Changes
... ...
... ... @@ -47,7 +47,7 @@ LiveKit for Android is available as a Maven package.
```groovy title="build.gradle"
...
dependencies {
def livekit_version = "2.16.0"
def livekit_version = "2.17.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.16.1-SNAPSHOT"
// implementation "io.livekit:livekit-android:2.17.1-SNAPSHOT"
}
```
... ...
... ... @@ -23,7 +23,7 @@ kotlin.code.style=official
###############################################################
GROUP=io.livekit
VERSION_NAME=2.16.1-SNAPSHOT
VERSION_NAME=2.17.0
POM_DESCRIPTION=LiveKit Android SDK, WebRTC Rooms
... ...
{
"name": "client-sdk-android",
"version": "2.16.0",
"version": "2.17.0",
"repository": "https://github.com/livekit/client-sdk-android.git",
"license": "Apache License 2.0",
"private": true,
... ...