Kai
Kai
hi @harshmdr-devslane, Add this in your AndroidManifest.xml ```xml ``` Before call `getDisplayMedia`, add this: ```dart final isGranted = await Helper.requestCapturePermission(); if (!isGranted) return; ```
```dart final isGranted = await Helper.requestCapturePermission(); if (!isGranted) return; // start foreground service var stream = await navigator.mediaDevices.getDisplayMedia({ ``` Have you started the foreground service yet? @harshmdr-devslane
A year ago, I faced this issue and after investigations, I realized that starting iOS CallKit is necessary because it keeps your app as a high priority. 
When broadcasting my phone screen, if I switch to other apps for a few minutes without starting CallKit, the system assumes my app is using unnecessary energy. I noticed that...
My app does not use incoming calls. I implemented CallKit solely for screen sharing. Is is clear?
let's follow this guide to config for Android: https://github.com/waterbustech/flutter-webrtc-plus?tab=readme-ov-file#android. I think lack of config for beauty filters.
@rn-netizen I'm migrating to v3 and it comes with the latest gpupixel, so it's not required config more for android! Let's use: ```yaml flutter_webrtc_plus: ^0.14.1+3 ```
I'm still writing the full docs, but I check out the [web](https://docs.waterbus.tech) and saw it still works. Have you seen example [app](https://github.com/lambiengcode/waterbus). While I'm writing docs, lets take look at...
hi @chocolateonly , it's related to the backend — you can customize [track.rs](https://github.com/waterbustech/waterbus-rs/blob/main/crates/webrtc-manager/src/entities/track.rs) to add speech-to-text (STT), use another library for translation, and then broadcast the results back to users.
Hi @chocolateonly , thank you for your feedback and questions! **1. There may be noise when entering the conversation. Is there a solution?** Could you please let us know what...