Recently, I've been working on an Ionic/Cordova app and came across a folder labeled /audio
which consists of mp3 files:
/www
/assets
/audio
file.mp3
/css
/js
config.xml
index.html
The issue at hand is that the /audio directory is not included in the build. Upon inspecting the application folder using a USB cable on android, the following was observed:
https://i.stack.imgur.com/nw9oO.png
Interestingly, the directories /css
and /js
are present as expected, but the /audio
directory seems to be missing.
This inconsistency raises the question: Why is this happening?