davidliu
Committed by GitHub

v2.13.0 (#611)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 ----  
2 -"client-sdk-android": patch  
3 ----  
4 -  
5 -Fix publish deadlock when no response from server  
1 ----  
2 -"client-sdk-android": patch  
3 ----  
4 -  
5 -Add SCREEN_SHARE_AUDIO as a Track.Source.Type  
1 ----  
2 -"client-sdk-android": patch  
3 ----  
4 -  
5 -Surface canPublishSources, canUpdateMetadata, and canSubscribeMetrics on ParticipantPermission  
1 ----  
2 -"client-sdk-android": minor  
3 ----  
4 -  
5 -Prewarm audio to speed up mic publishing  
1 ----  
2 -"client-sdk-android": minor  
3 ----  
4 -  
5 -Fast track publication support  
1 ----  
2 -"client-sdk-android": patch  
3 ----  
4 -  
5 -Fast fail attempts to publish without permissions  
1 # client-sdk-android 1 # client-sdk-android
2 2
  3 +## 2.13.0
  4 +
  5 +### Minor Changes
  6 +
  7 +- Prewarm audio to speed up mic publishing - [#623](https://github.com/livekit/client-sdk-android/pull/623) ([@davidliu](https://github.com/davidliu))
  8 +
  9 +- Fast track publication support - [#612](https://github.com/livekit/client-sdk-android/pull/612) ([@davidliu](https://github.com/davidliu))
  10 +
  11 +### Patch Changes
  12 +
  13 +- Fix publish deadlock when no response from server - [#618](https://github.com/livekit/client-sdk-android/pull/618) ([@davidliu](https://github.com/davidliu))
  14 +
  15 +- Add SCREEN_SHARE_AUDIO as a Track.Source.Type - [#610](https://github.com/livekit/client-sdk-android/pull/610) ([@davidliu](https://github.com/davidliu))
  16 +
  17 +- Surface canPublishSources, canUpdateMetadata, and canSubscribeMetrics on ParticipantPermission - [#610](https://github.com/livekit/client-sdk-android/pull/610) ([@davidliu](https://github.com/davidliu))
  18 +
  19 +- Fast fail attempts to publish without permissions - [#618](https://github.com/livekit/client-sdk-android/pull/618) ([@davidliu](https://github.com/davidliu))
  20 +
3 ## 2.12.3 21 ## 2.12.3
4 22
5 ### Patch Changes 23 ### Patch Changes
@@ -47,14 +47,14 @@ LiveKit for Android is available as a Maven package. @@ -47,14 +47,14 @@ 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.12.3" 50 + def livekit_version = "2.13.0"
51 51
52 implementation "io.livekit:livekit-android:$livekit_version" 52 implementation "io.livekit:livekit-android:$livekit_version"
53 // CameraX support with pinch to zoom, torch control, etc. 53 // CameraX support with pinch to zoom, torch control, etc.
54 implementation "io.livekit:livekit-android-camerax:$livekit_version" 54 implementation "io.livekit:livekit-android-camerax:$livekit_version"
55 55
56 // Snapshots of the latest development version are available at: 56 // Snapshots of the latest development version are available at:
57 - // implementation "io.livekit:livekit-android:2.12.4-SNAPSHOT" 57 + // implementation "io.livekit:livekit-android:2.13.1-SNAPSHOT"
58 } 58 }
59 ``` 59 ```
60 60
@@ -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.12.4-SNAPSHOT 26 +VERSION_NAME=2.13.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.12.3", 3 + "version": "2.13.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,