AND-401 Exam QuestionsBrowse all questions from this exam

AND-401 Exam - Question 79


Which of the following is the correct way to add access permission to your application?

Show Answer
Correct Answer: A

To add access permissions in an Android application, you need to declare the required permissions in the AndroidManifest.xml file using the <uses-permission> tag. This tag should be a child of the <manifest> tag. This is necessary for the application to request permission to access certain features or data on the device when it is installed. Failure to declare the necessary permissions may result in the application not being able to access certain features or data.

Discussion

1 comment
Sign in to comment
MmadiOption: A
Dec 31, 2022

A. Add a <uses-permission> tag as a child tag of the <manifest> tag in AndroidManifest.xml