Android resources are the non-code assets of an app — layouts, strings, images, colors, dimensions — kept separate from code in the res/ directory. This separation supports maintainability, localization, and adapting to different devices and configurations.
What resources are
Resources = app assets kept separate from code in res/:
res/layout/ → XML layout files (UI definitions)
res/values/ → strings.xml, colors.xml, dimens.xml, styles.xml
res/drawable/ → images, vector graphics, shapes
res/mipmap/ → app launcher icons
res/font/ → fonts
→ referenced in code as R.string.app_name, R.layout.activity_main, R.drawable.logo, etc.
