I'm building a multi-device hybrid app with this Visual Studio plugin. In my html file i use the html5 audio tag. This does only work with online mp3 files, not with offline mp3 files. Is it possible that audio isn't supported in the multi-device hybrid apps plugin? Or is it just me doing something wrong? I'm testing it on a Nexus 5.
Here is the HTML that I'm using.
<audio controls>
<source src="https://ia802508.us.archive.org/5/items/testmp3testfile/mpthreetest.mp3" type="audio/mpeg">
</audio>
<audio controls>
<source src="sound.mp3" type="audio/mpeg">
</audio>
Thanks