1.

What is AndroidManifest.xml file and why do you need this?

Answer»
  • 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.


Discussion

No Comment Found