0

I have some music file under the following relative path:

    Main Project Directory\app\src\main\res\music

What how do I create an URI to point to it?

Bill Software Engineer
  • 7,362
  • 23
  • 91
  • 174

1 Answers1

-1

Such files should be into raw directory or assets directory, not into res directory. Read more about Providing Resources.

Right place for putting mp3 files in an android project is a good example to read such files from assets/ raw directory.

Community
  • 1
  • 1
Pankaj Kumar
  • 81,967
  • 29
  • 167
  • 186