the project is written in vue. Now I need to play the ad video screen. I can automatically play it on the computer browser, but it cannot be automatically played after it is packaged to generate webview through Android. Excuse me, how can I achieve automatic playback?
this is the H5 video tag for the code I wrote
<video ref="videoAuto" width="1080px" height="1920px" loop >
<source src="../../../static/image/logo.mp4" type="video/mp4">
</video>
js
autoVido(){
let self= this
let videos = self.$refs.videoAuto;
videos.loop = "loop";
videos.play();
}