Posts

Showing posts with the label android permissions

Android Easy Runtime Permissions with Dexter

Image
We all know that runtime permission is introduced after Android Marshmallow lets users allow or deny any permission at runtime. Implementation of runtime permissions in  android  is a hard and complex process for the developers. Developers need to write a lot of code snippets for just single runtime permission. In this blog, we are going to learn how to implement runtime permission using the Dexter library. Using the library, the permissions can be implemented in less time and efficiently. This is a basic article about Dexter covering basic features served by the library. Dexter has different types of listener callback, error handling, and many more. You can find more info about Dexter on Dexter’s developer page. 1. Dexter Permissions Library To work with Dexter, add the library in your build.gradle file dependencies {     // Dexter runtime permissions     implementation 'com.karumi:dexter:4.2.0' } 1.1 Requesting Single Permission To request the single perm...