Workflow for Requesting Runtime Permissions
Learn how to request runtime permissions for performing restricted actions in Android.
We'll cover the following...
Accessing a user’s call history, messages, location, camera, microphone, and so on is categorized as dangerous permissions. If our application requires any dangerous permissions, adding them to the AndroidManifest.xml
file isn’t sufficient. We need to explicitly ask for the user’s consent to use the permission.
Let’s learn about the workflow for requesting and using runtime permissions.
Runtime permissions workflow
As a best practice, we should request runtime permissions just before performing a restricted action. It’s not advisable to request permissions in advance. For example, let’s assume our application requires external storage ...