WebView does not play an audio file inserted in a HTML. How can I do?
I have a html file with the following code:
The audio file sounds when I run the HTML on PC. However, My app loads the HTML file but does not play the audio.
I have a html file with the following code:
HTML:
<script>
function playAudio($audio)
{
playAudio.playAudio($audio);
}
</script>
<span onclick="playAudio('1.mp3');">A</span>
The audio file sounds when I run the HTML on PC. However, My app loads the HTML file but does not play the audio.