What is not true about the AndroidManifest.xml file?
What is not true about the AndroidManifest.xml file?
The AndroidManifest.xml file does not declare the views used within the application. Instead, it primarily serves to provide essential information about the application to the Android system. This includes declaring user permissions required by the application, describing the application components such as activities, services, broadcast receivers, and content providers, and specifying hardware and software features used by the application. Views and the user interface components are defined in XML layout files, not in the AndroidManifest.xml file.
A. It declares the views used within the application