无法加入实时视频 session react-native-webview android
Unable to join live video session react-native-webview android
我正在开发一个实时视频 session 应用程序。我用BigBlueButtonAPI开发了web版,在web上可以正常使用。我正在尝试使用 react-native-webview 在我的 React 本机应用程序中使用该 Web 应用程序 URL。在 ios 应用程序中,我可以加入 session 但我无法在 android 中加入 session 并且在加入时收到以下消息
It looks like you're using an older version of a supported browser. Please upgrade your browser for full support.
我的依赖版本:
反应:16.9.0
react-native: 0.61.5
react-native-webview: 8.2.1
提前致谢。
在 webview 中添加 userAgent
道具
<WebView
userAgent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36"
...otherProps
/>
并在 androidManifest.xml
中添加 MODIFY_AUDIO_SETTINGS
权限
我正在开发一个实时视频 session 应用程序。我用BigBlueButtonAPI开发了web版,在web上可以正常使用。我正在尝试使用 react-native-webview 在我的 React 本机应用程序中使用该 Web 应用程序 URL。在 ios 应用程序中,我可以加入 session 但我无法在 android 中加入 session 并且在加入时收到以下消息
It looks like you're using an older version of a supported browser. Please upgrade your browser for full support.
我的依赖版本:
反应:16.9.0
react-native: 0.61.5
react-native-webview: 8.2.1
提前致谢。
在 webview 中添加 userAgent
道具
<WebView
userAgent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36"
...otherProps
/>
并在 androidManifest.xml
MODIFY_AUDIO_SETTINGS
权限