I am trying to play audio files stored in the assets directory, but before I even read a file I get the error "error occured java.io.FileNotFoundException: track.mp3". Here's how I read it:
AssetFileDescriptor afd = getAssets().openFd("track.mp3");
I read a lot of descriptions on the internet, but no success.