The files we store in android R.raw folder(eg mySong.mp3) are present on Mobile internal memory or in SD card.
i have a song audio 100MB and i am using this in my android application.
MediaPlayer mPlayer = MediaPlayer.create(context, R.raw.mysong);
mPlayer.start();
Just wanted to know that when user install .apk this 100MB song will stored in SD card or internal memory of phone ?
well you can decide.
You can set the field android:installLocation in the root manifest element to prefer install location. values may be :
internalOnly: force internal
preferExternal: prefere SDCARD
auto: System will decide
Install in sd card is supported only devices with android 2.2 and higher.