How I could add R.raw class to my android project?
Now I haven\'t /res/raw folder at all (and class as well).
And I can\'t find any tools in eclipse to do that.
So how to add R.
To get it to recognize the raw file, make sure you create it, and add it as a raw resource file. Then go to build.gradle file and add this block of code.
sourceSets {
main {
assets.srcDirs = ['/res/raw']
}
}