What does the Android project folder "res/" contain?
What does the Android project folder "res/" contain?
The 'res' folder in an Android project contains resource files. These include drawable graphics, UI strings, layout files, and other resources that are separate from the compiled code. This is where you place any file that you would load with getResources() or from res. It does not contain Java Activity classes, Java source code, or libraries.
B. Resource files