Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release PR #2419

Merged
merged 4 commits into from
Oct 25, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,10 @@ Add `flutter_foreground_task` as a dependency in your `pubspec.yaml` file.

```
dependencies:
flutter_foreground_task: "3.10.0"
flutter_foreground_task:
git:
url: https://github.com/100mslive/flutter-foreground-task-v2.git
ref: gradle-8-error-fix
```

### Adding Service in `AndroidManifest.xml`
Expand All @@ -175,7 +178,8 @@ Add service inside `<application>` tag as follows:
// Set Service Type to capture Audio or Video as per your use-case. In most cases, only `microphone` access would be required. Then do not pass the `camera`. If stopWithTask set to true then it will stop the notification if app is force killed.
<service android:name="com.pravera.flutter_foreground_task.service.ForegroundService"
android:foregroundServiceType="camera|microphone"
android:stopWithTask="true" />
android:stopWithTask="true"
android:exported="false" />

</application>
```
Expand Down
10 changes: 10 additions & 0 deletions docs/javascript/v2/release-notes/release-notes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,16 @@ description: Release Notes for 100ms JavaScript SDK
| @100mslive/hms-virtual-background | [![npm version](https://badge.fury.io/js/%40100mslive%2Fhms-virtual-background.svg)](https://badge.fury.io/js/%40100mslive%2Fhms-virtual-background) |


## 2024-10-15
Released: `@100mslive/[email protected]`, `@100mslive/[email protected]`, `@100mslive/[email protected]`, `@100mslive/[email protected]`, `@100mslive/[email protected]`, `@100mslive/[email protected]`

### Fixed:
- Handling of audio and video afer incoming call interruption - everything should recover after the call ends
- Crash on role change from publishing role to non-publishing role and back

### Added:
- Roomkit Prebuilt: Show a modal for `Device in Use` error with possible suggestions

## 2024-09-30
Released: `@100mslive/[email protected]`, `@100mslive/[email protected]`, `@100mslive/[email protected]`, `@100mslive/[email protected]`, `@100mslive/[email protected]`, `@100mslive/[email protected]`

Expand Down
Loading