davidliu
Committed by GitHub

v2.16.0 (#664)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 ----  
2 -"client-sdk-android": minor  
3 ----  
4 -  
5 -Unorder the lossy data channel  
1 ----  
2 -"client-sdk-android": patch  
3 ----  
4 -  
5 -Fix NPE when streaming text  
1 ----  
2 -"client-sdk-android": patch  
3 ----  
4 -  
5 -Add rpc handler methods to Room class for convenience.  
1 ----  
2 -"client-sdk-android": minor  
3 ----  
4 -  
5 -Add pre-connect audio for use with agents  
6 -  
7 -See Room.withPreconnectAudio for details.  
1 ----  
2 -"client-sdk-android": patch  
3 ----  
4 -  
5 -Fix outgoing datastreams incorrectly padding data  
1 ----  
2 -"client-sdk-android": minor  
3 ----  
4 -  
5 -CameraX: support for selecting cameras by their physical id  
1 ----  
2 -"client-sdk-android": minor  
3 ----  
4 -  
5 -Add Participant.State and related events  
1 # client-sdk-android 1 # client-sdk-android
2 2
  3 +## 2.16.0
  4 +
  5 +### Minor Changes
  6 +
  7 +- Unorder the lossy data channel - [#665](https://github.com/livekit/client-sdk-android/pull/665) ([@bcherry](https://github.com/bcherry))
  8 +
  9 +- Add pre-connect audio for use with agents - [#666](https://github.com/livekit/client-sdk-android/pull/666) ([@davidliu](https://github.com/davidliu))
  10 +
  11 + See Room.withPreconnectAudio for details.
  12 +
  13 +- CameraX: support for selecting cameras by their physical id - [#668](https://github.com/livekit/client-sdk-android/pull/668) ([@KasemJaffer](https://github.com/KasemJaffer))
  14 +
  15 +- Add Participant.State and related events - [#666](https://github.com/livekit/client-sdk-android/pull/666) ([@davidliu](https://github.com/davidliu))
  16 +
  17 +### Patch Changes
  18 +
  19 +- Fix NPE when streaming text - [#670](https://github.com/livekit/client-sdk-android/pull/670) ([@davidliu](https://github.com/davidliu))
  20 +
  21 +- Add rpc handler methods to Room class for convenience. - [#663](https://github.com/livekit/client-sdk-android/pull/663) ([@davidliu](https://github.com/davidliu))
  22 +
  23 +- Fix outgoing datastreams incorrectly padding data - [#666](https://github.com/livekit/client-sdk-android/pull/666) ([@davidliu](https://github.com/davidliu))
  24 +
3 ## 2.15.0 25 ## 2.15.0
4 26
5 ### Minor Changes 27 ### Minor Changes
@@ -47,7 +47,7 @@ LiveKit for Android is available as a Maven package. @@ -47,7 +47,7 @@ LiveKit for Android is available as a Maven package.
47 ```groovy title="build.gradle" 47 ```groovy title="build.gradle"
48 ... 48 ...
49 dependencies { 49 dependencies {
50 - def livekit_version = "2.15.0" 50 + def livekit_version = "2.16.0"
51 51
52 implementation "io.livekit:livekit-android:$livekit_version" 52 implementation "io.livekit:livekit-android:$livekit_version"
53 53
@@ -58,7 +58,7 @@ dependencies { @@ -58,7 +58,7 @@ dependencies {
58 implementation "io.livekit:livekit-android-track-processors:$livekit_version" 58 implementation "io.livekit:livekit-android-track-processors:$livekit_version"
59 59
60 // Snapshots of the latest development version are available at: 60 // Snapshots of the latest development version are available at:
61 - // implementation "io.livekit:livekit-android:2.15.1-SNAPSHOT" 61 + // implementation "io.livekit:livekit-android:2.16.1-SNAPSHOT"
62 } 62 }
63 ``` 63 ```
64 64
@@ -23,7 +23,7 @@ kotlin.code.style=official @@ -23,7 +23,7 @@ kotlin.code.style=official
23 ############################################################### 23 ###############################################################
24 24
25 GROUP=io.livekit 25 GROUP=io.livekit
26 -VERSION_NAME=2.15.1-SNAPSHOT 26 +VERSION_NAME=2.16.0
27 27
28 POM_DESCRIPTION=LiveKit Android SDK, WebRTC Rooms 28 POM_DESCRIPTION=LiveKit Android SDK, WebRTC Rooms
29 29
1 { 1 {
2 "name": "client-sdk-android", 2 "name": "client-sdk-android",
3 - "version": "2.15.0", 3 + "version": "2.16.0",
4 "repository": "https://github.com/livekit/client-sdk-android.git", 4 "repository": "https://github.com/livekit/client-sdk-android.git",
5 "license": "Apache License 2.0", 5 "license": "Apache License 2.0",
6 "private": true, 6 "private": true,