The AndroidManifest.xml is an essential configuration file that declares an app's components, permissions, and metadata to the Android system. Every Android app has one, and the OS reads it to understand the app's structure and requirements.
What the manifest declares
The AndroidManifest.xml tells the Android system about the app:
→ COMPONENTS — declares activities, services, broadcast receivers, content providers
(components must be declared here to be usable)
→ PERMISSIONS — what the app needs (internet, camera, location, etc.)
→ app METADATA — package name, app icon, label, theme, min/target SDK versions
→ INTENT FILTERS — what intents components can respond to (e.g. the launcher activity)
→ hardware/software FEATURES required; other configuration
