You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'am developing a app to see videos with autoplay, but I need click in the screen to chrome don't block the request because he auto blocks autoplay. This app running on TV with no user access to click.
In electron I need add this command to resolve this
I'am developing a app to see videos with autoplay, but I need click in the screen to chrome don't block the request because he auto blocks autoplay. This app running on TV with no user access to click.
In electron I need add this command to resolve this
I'am developing a app to see videos with autoplay, but I need click in the screen to chrome don't block the request because he auto blocks autoplay. This app running on TV with no user access to click.
In electron I need add this command to resolve this
app.commandLine.appendSwitch('autoplay-policy', 'no-user-gesture-required');
In webview folder I think we need edit AndroidJSActivity to add this command to replay this same command
this.myWebView.getSettings().setMediaPlaybackRequiresUserGesture(false);
I tried to add pull request but do not have access to do.
The text was updated successfully, but these errors were encountered: