0 votes
in Android by
What is AndroidManifest.xml file and why do you need this?

1 Answer

0 votes
by

The AndroidManifest.xml file contains information regarding the application that the Android system must know before the codes can be executed.

This file is essential in every Android application.

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.

...