Thursday, September 19, 2013

The Android manifest file

AndroidManifest.xml

The components and settings of an Android application are described in the AndroidManifest.xml file. This file is known as the Android manifest file.
All activities, services and content providers components of the application must be statically declared in this file. Broadcast receiver can be defined statically in the manifest file or dynamically at runtime in the application.
The Android manifest file must also contain the required permissions for the application. For example if the application requires network access it must be specified here.

No comments:

Post a Comment