davidliu
Committed by GitHub

v2.18.0 (#704)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
---
"client-sdk-android": minor
---
Refactor some internal data message sending methods to use Result instead of throwing Exceptions to
fix crashes.
# client-sdk-android
## 2.18.0
### Minor Changes
- Refactor some internal data message sending methods to use Result instead of throwing Exceptions to - [#703](https://github.com/livekit/client-sdk-android/pull/703) ([@davidliu](https://github.com/davidliu))
fix crashes.
## 2.17.1
### Patch Changes
... ...
... ... @@ -47,7 +47,7 @@ LiveKit for Android is available as a Maven package.
```groovy title="build.gradle"
...
dependencies {
def livekit_version = "2.17.1"
def livekit_version = "2.18.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.17.2-SNAPSHOT"
// implementation "io.livekit:livekit-android:2.18.1-SNAPSHOT"
}
```
... ...
... ... @@ -23,7 +23,7 @@ kotlin.code.style=official
###############################################################
GROUP=io.livekit
VERSION_NAME=2.17.2-SNAPSHOT
VERSION_NAME=2.18.0
POM_DESCRIPTION=LiveKit Android SDK, WebRTC Rooms
... ...
{
"name": "client-sdk-android",
"version": "2.17.1",
"version": "2.18.0",
"repository": "https://github.com/livekit/client-sdk-android.git",
"license": "Apache License 2.0",
"private": true,
... ...