I have a hybrid app that plays mp3, but I don't want to set all the mp3s inside the assets folder, I want the user to select mp3 that he/she likes to download.
So the question is... Can I use a previously downloaded mp3 inside webview, natively in the app data folder?
Something like this in file:///android_assets/index.html:
<html><body>
<audio src="file:///Android/data/com.packagename/previouslydownloaded.mp3">
</body></html>
Thanks a lot.