Multiple choice technology operating systems

Choose the true regarding AndroidManifest.xml File in Android?

  1. AndroidManifest.xml file is present in root directory of an application

  2. AndroidManifest.xml file is responsible for naming java package for the application

  3. c.)AndroidManifest.xml File is an optional for an application

  4. It describes the components of the application — the activities, services, broadcast receivers,

  5. AndroidManifest.xml is not responsible for declaring the minimum level of the Android API that

Reveal answer Fill a bubble to check yourself
A,D Correct answer
Explanation

AndroidManifest.xml resides in the application's root directory and describes all components (activities, services, broadcast receivers, content providers). It names the Java package and declares the minimum API level required. The file is MANDATORY for any Android application - it cannot be optional.