AndroidManifest
02 Jan 2023
.
android .
- The
AndroidManifest.xml
file contains information regarding the application that the Android system must know before the codes can be executed.
- It is declared in the root directory.
- This file performs several tasks such as:
- Providing a unique name to the java package.
- Describing various components of the application such as activity, services, and many more.
- Defining the classes which will implement these components.