Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/eleven-mice-fry.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/eleven-phones-buy.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/real-jars-wait.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/small-ravens-help.md

This file was deleted.

14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# components-android

## 2.1.0

### Minor Changes

- Change the LocalMedia API to use setEnabled rather than start/stop methods to make clear that they are idempotent. - [#52](https://github.com/livekit/components-android/pull/52) ([@davidliu](https://github.com/davidliu))

### Patch Changes

- Remove Immutable annotation from TrackReference as the contained objects are not immutable - [#52](https://github.com/livekit/components-android/pull/52) ([@davidliu](https://github.com/davidliu))

- Fix rememberLiveKitRoom disabling audio/video if enabled from outside the composable - [#52](https://github.com/livekit/components-android/pull/52) ([@davidliu](https://github.com/davidliu))

- Fix isDeviceEnabled states not properly updating - [#52](https://github.com/livekit/components-android/pull/52) ([@davidliu](https://github.com/davidliu))

## 2.0.0

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ LiveKit Components for Android is available as a Maven package.
...
dependencies {
// The components package has a different versioning than the main LiveKit SDK.
implementation "io.livekit:livekit-android-compose-components:2.0.0"
implementation "io.livekit:livekit-android-compose-components:2.1.0"

// Snapshots of the latest development version are available at:
// implementation "io.livekit:livekit-android-compose-components:2.0.1-SNAPSHOT"
// implementation "io.livekit:livekit-android-compose-components:2.1.1-SNAPSHOT"

// Depend on LiveKit SDK separately to keep up to date.
implementation "io.livekit:livekit-android:$livekit_version"
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ android.nonTransitiveRClass=true
###############################################################

GROUP=io.livekit
VERSION_NAME=2.0.0
VERSION_NAME=2.1.0

POM_DESCRIPTION=Compose Components for LiveKit Android SDK

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "components-android",
"version": "2.0.0",
"version": "2.1.0",
"repository": "https://github.com/livekit/components-android.git",
"license": "Apache License 2.0",
"private": true,
Expand Down
Loading