我的应用通过react-native-webview播放我的内容(通常为youtube.com视频页面)。我想让我的应用程序在后台运行时仍能播放内容。现在,该应用程序在变成背景时便停止播放声音。
我启用了功能:
这是我的react-native-webview代码。
<WebView
allowsFullscreenVideo
source={{uri: this.state.url}}
javaScriptEnabled={true}
mixedContentMode={'always'}
onShouldStartLoadWithRequest={this._deepLinkGuard}
/>