I create the folder sdcard and a subfolder audio (sdcard/audio) inside my project in eclipse. The sdcard folder will be locaded under the res folder. I then copy an mp3 file to the audio folder (sdcard/audio/sound.mp3).
What I'm wondering is, will this mp3 file be included in my project? I.e. when a user downloads my app, will they get mp3 file as well? And will it be reachable in their device though this path: Environment.getExternalStorageDirectory().getPath() + "audio/sound.mp3" ...
If this is not so, than how and where should I include audiofiles? In the assets folder maybe? I already tried to include them inside res/raw and that works. But from what I understand, only sounds like alarms and other small sounds should be there.