adspace
Answer Posted / Abhinav Awasthi
AndroidManifest.xml is a fundamental file required for every Android application. It contains metadata about the app, such as:
1. `package`: The package name of the app.
2. `versionCode` and `versionName`: The version information of the app.
3. `minSdkVersion` and `targetSdkVersion`: The minimum and target API level required/supported by the app.
4. `uses-sdk`: Declares the features/APIs that the app uses, like internet, network, etc.
5. `uses-permission`: Lists all the permissions required by the app to function correctly.
6. `application` tag: Contains important details about the application like its name, icon, theme, and more.
7. `activity`, `service`, `provider`, and `receiver` tags: Define various components of the app.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers