Discussion: [TOPIC N76 E/chromium(14253): [ERROR:web_contents_delegate.cc(225)] WebContentsDelegate::CheckMediaAccessPermission: Not supported.AME] #140
Labels
discussion
This issue is used for discussing a topic.
Discussion: [TOPIC NAME]
Call feature not working in flutter web view.
Summary
I am using flutter web view for my project which is in .net. all functionality working fine except call feature, for call features in .net we have used Twillo.
I have given all required permission for it in AndroidManifest.xml file : -
And added request permission of microphone : -
@OverRide
void initState() {
super.initState();
_requestPermission();
}
Future _requestPermission() async {
var status = await Permission.microphone.request();
if (status != PermissionStatus.granted) {
print("Audio permission denied or restricted");
} else {
print("Audio permission granted");
}
}
Error I am getting in my debug console is:-
76
E/chromium(14253): [ERROR:web_contents_delegate.cc(225)] WebContentsDelegate::CheckMediaAccessPermission: Not supported.
The text was updated successfully, but these errors were encountered: