Is there a way in Android to access a file simply by its filename and path?
I am trying to move some code into Android from a normal Java project, where I have .wav files stored in a subdirectory of \src (bad practice?). Android cannot access these with the same relative filepath clearly.
Is there a filepath for these files in the Android file system or is it simply not possible to do this?
I've read a few things about the Assets folder so am aware of the fact that you can use this to copy files across into the app location, but it would seem a lot of code to change for what I assumed would not be a big issue.
Thanks in advance for any help.