Perondas
Perondas
I have the same problem with a Google Pixel 6 pro, #1039.
I have found the problem in the code. For some reason, and I cannot tell why, in the file 'FlutterWebRTCPlugin.java' the rtcAudioManager is null, when it should not be. Even...
A solution could be changing: ```java @Override public void setSpeakerphoneOn(boolean on) { if (rtcAudioManager != null) { rtcAudioManager.setSpeakerphoneOn(on); } } ``` to: ```java @Override public void setSpeakerphoneOn(boolean on) { if...
Here is my fix implemented: https://github.com/Perondas/flutter-webrtc/tree/speakerphoneTempFix This is more than likely going to break something, so use at your own risk.
It seems that I have found a good solution to this. The reason why 'enableSpeakerphone(true)' does not work is because 'onAudioManagerRequested' is never called. This happens due to these lines...
The README should be updated to reflect this.
> the issue is not coming in android 11 or and when i tested in android 12 the issue is coming volume came from ear speaker This seems to be...
This seems to be a duplicate of #118
I would appreciate this getting merged and published
Is there currently no way to send a SUBSCRIBE verb?