-
Notifications
You must be signed in to change notification settings - Fork 205
Open
Description
In Flutter mobile build, when I turn off the speaker, it actually lowers the volume instead of turning off completely. I tried it in multiple ways/code, but the same issue occurs.
await room.setSpeakerOn(isVoiceOn);
await Hardware.instance.setSpeakerphoneOn(isVoiceOn);
for (final track in room.localParticipant?.audioTrackPublications ?? []) {
if (isVoiceOn) {
track.unmute();
} else {
track.mute();
}
}
Metadata
Metadata
Assignees
Labels
No labels