Il AndroidManifest.xml è un file di configurazione essenziale che dichiara i componenti dell'app, i permessi e i metadati al sistema Android. Ogni app Android ne ha uno, e il sistema operativo lo legge per comprendere la struttura e i requisiti dell'app.
Cosa dichiara il manifest
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
