WebRtc video/audio call not working

After buying from codecanyon, everything was working fine but the WebRtc video/audio call not working, how to fix it?

You need to be configured for WebRtc with webview please add below lines:

mBinding.webView.settings.apply {
    mediaPlaybackRequiresUserGesture = false
    setSupportMultipleWindows(true)
    allowFileAccessFromFileURLs = true
    allowUniversalAccessFromFileURLs = true
}

Leave a Reply