I'm still a Android student and I have develop an application which has more than 100Mb and therefore I need to use expansion files.
I have read thousands of documents, but I am very confused.
There are many mp3 files I need to compact in that kind of 'expansion file', in order to upload only apk code and not the entire app+mp3 files.
I think if I generate a file '.obb' with all those mp3 ones, I would go over 50MB requrired by Google Play.
I know this '.obb' file must be in scard/Android/obb folder of my device, too.
Currently my code get the 'int' resource from a mp3 file to manipulate it is like this:
intMyResource=R.raw.name_of_my_music_file;
But, currently, as I told, the path of the files is 'R.raw'.
My question: How is the best method to replace
intMyResource=R.raw.name_of_my_music_file;
to the actual path/name where my '.obb' file is?
Thank you all.
Mauro