Dexter is an Android library that simplifies the process of requesting permissions at runtime.
Android Marshmallow includes a new functionality to let users grant or deny permissions when running an app instead of granting them all when installing it. This approach gives the user more control over applications but requires developers to add lots of code to support it.
The official API is heavily coupled with the Activity
class.
Dexter frees your permission code from your activities and lets you write that logic anywhere you want.
To start using the library you just need to initialize Dexter with an Activity
. Remember to stop Dexter during the onDestroy
stage to avoid memory leaks.
public MyApplication extends Application {
@Override public void onCreate() {
super.onCreate();
Dexter.initialize(context);
}
}
@Override protected void onDestroy() {
Dexter.stop();
super.onDestroy();
}
Once the library is initialized you can start checking permissions at will. You have two options, you can either check for a single permission or check for multiple permissions at once.
###Single permission
For each permission, register a PermissionListener
implementation to receive the state of the request:
Dexter.checkPermission(new PermissionListener() {
@Override public void onPermissionGranted(PermissionGrantedResponse response) {/* ... */}
@Override public void onPermissionDenied(PermissionDeniedResponse response) {/* ... */}
@Override public void onPermissionRationaleShouldBeShown(PermissionRequest permission, PermissionToken token) {/* ... */}
}, Manifest.permission.CAMERA);
To make your life easier we offer some PermissionListener
implementations to perform recurrent actions:
EmptyPermissionListener
to make it easier to implement only the methods you want.DialogOnDeniedPermissionListener
to show a configurable dialog whenever the user rejects a permission request:
PermissionListener dialogPermissionListener =
DialogOnDeniedPermissionListener.Builder
.withContext(context)
.withTitle("Camera permission")
.withMessage("Camera permission is needed to take pictures of your cat")
.withButtonText(android.R.string.ok)
.withIcon(R.mipmap.my_icon)
.build();
Dexter.checkPermission(dialogPermissionListener, Manifest.permission.CAMERA);
SnackbarOnDeniedPermissionListener
to show a snackbar message whenever the user rejects a permission request:
PermissionListener snackbarPermissionListener =
SnackbarOnDeniedPermissionListener.Builder
.with(rootView, "Camera access is needed to take pictures of your dog")
.withOpenSettingsButton("Settings")
.withCallback(new Snackbar.Callback() {
@Override
public void onShown(Snackbar snackbar) {
// Event handler for when the given Snackbar is visible
}
@Override
public void onDismissed(Snackbar snackbar, int event) {
// Event handler for when the given Snackbar has been dismissed
}
})
.build();
Dexter.checkPermission(snackbarPermissionListener, Manifest.permission.CAMERA);
CompositePermissionListener
to compound multiple listeners into one:
PermissionListener snackbarPermissionListener = /*...*/;
PermissionListener dialogPermissionListener = /*...*/;
Dexter.checkPermission(new CompositePermissionListener(snackbarPermissionListener, dialogPermissionListener, /*...*/), Manifest.permission.CAMERA);
###Multiple permissions
If you want to request multiple permissions you just need to do the same but registering an implementation of MultiplePermissionsListener
:
Dexter.checkPermissions(new MultiplePermissionsListener() {
@Override public void onPermissionsChecked(MultiplePermissionsReport report) {/* ... */}
@Override public void onPermissionRationaleShouldBeShown(List<PermissionRequest> permissions, PermissionToken token) {/* ... */}
}, Manifest.permission.CAMERA, Manifest.permission.READ_CONTACTS, Manifest.permission.RECORD_AUDIO);
The MultiplePermissionsReport
contains all the details of the permission request like the list of denied/granted permissions or utility methods like areAllPermissionsGranted
and isAnyPermissionPermanentlyDenied
.
As with the single permission listener, there are also some useful implementations for recurring patterns:
EmptyMultiplePermissionsListener
to make it easier to implement only the methods you want.DialogOnAnyDeniedMultiplePermissionsListener
to show a configurable dialog whenever the user rejects at least one permission:
MultiplePermissionsListener dialogMultiplePermissionsListener =
DialogOnAnyDeniedMultiplePermissionsListener.Builder
.withContext(context)
.withTitle("Camera & audio permission")
.withMessage("Both camera and audio permission are needed to take pictures of your cat")
.withButtonText(android.R.string.ok)
.withIcon(R.mipmap.my_icon)
.build();
Dexter.checkPermissions(dialogMultiplePermissionsListener, Manifest.permission.CAMERA, Manifest.permission.READ_CONTACTS, Manifest.permission.RECORD_AUDIO);
SnackbarOnAnyDeniedMultiplePermissionsListener
to show a snackbar message whenever the user rejects any of the requested permissions:
MultiplePermissionsListener snackbarMultiplePermissionsListener =
SnackbarOnAnyDeniedMultiplePermissionsListener.Builder
.with(rootView, "Camera and audio access is needed to take pictures of your dog")
.withOpenSettingsButton("Settings")
.withCallback(new Snackbar.Callback() {
@Override
public void onShown(Snackbar snackbar) {
// Event handler for when the given Snackbar has been dismissed
}
@Override
public void onDismissed(Snackbar snackbar, int event) {
// Event handler for when the given Snackbar is visible
}
})
.build();
Dexter.checkPermissions(snackbarMultiplePermissionsListener, Manifest.permission.CAMERA, Manifest.permission.READ_CONTACTS, Manifest.permission.RECORD_AUDIO);
CompositePermissionListener
to compound multiple listeners into one:
MultiplePermissionsListener snackbarMultiplePermissionsListener = /*...*/;
MultiplePermissionsListener dialogMultiplePermissionsListener = /*...*/;
Dexter.checkPermissions(new CompositeMultiplePermissionsListener(snackbarMultiplePermissionsListener, dialogMultiplePermissionsListener, /*...*/), Manifest.permission.CAMERA, Manifest.permission.RECORD_AUDIO);
###Handling listener threads
If you want to receive permission listener callbacks on the same thread that fired the permission request, you just need to use the OnSameThread
version of the single and multiple permissions methods.
checkPermissionOnSameThread
to request a single permission and receive callbacks in the thread that fired the requestcheckPermissionsOnSameThread
to request multiple permissions and receive callbacks in the thread that fired the request
###Showing a rationale Android will notify you when you are requesting a permission that needs an additional explanation for its usage, either because it is considered dangerous, or because the user has already declined that permission once.
Dexter will call the method onPermissionRationaleShouldBeShown
implemented in your listener with a PermissionToken
. It's important to keep in mind that the request process will pause until the token is used, therefore, you won't be able to call Dexter again or request any other permissions if the token has not been used.
The most simple implementation of your onPermissionRationaleShouldBeShown
method could be:
@Override public void onPermissionRationaleShouldBeShown(PermissionRequest permission, PermissionToken token) {
token.continuePermissionRequest();
}
###Screen rotation
If your application has to support configuration changes based on screen rotation remember to add a call to Dexter
in your Activity onCreate
method as follows:
@Override protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.sample_activity);
Dexter.continuePendingRequestsIfPossible(permissionsListener);
}
IMPORTANT: Remember to follow the [Google design guidelines] 2 to make your application as user-friendly as possible.
Include the library in your build.gradle
dependencies{
compile 'com.karumi:dexter:2.2.2'
}
or to your pom.xml
if you are using Maven
<dependency>
<groupId>com.karumi</groupId>
<artifactId>dexter</artifactId>
<version>2.2.2</version>
<type>aar</type>
</dependency>
- For permissions that did not exist before API Level 16, you should check the OS version and use ContextCompat.checkSelfPermission. See You Cannot Hold Non-Existent Permissions.
- Don't call Dexter from an Activity with the flag
noHistory
enabled. When a permission is requested, Dexter creates its own Activity internally and pushes it into the stack causing the original Activity to be dismissed.
Feel free to add any useful feature to the library, we will be glad to improve it with your help.
Keep in mind that your PRs must be validated by Travis-CI. Please, run a local build with ./gradlew checkstyle build
before submiting your code.
Copyright 2015 Karumi
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.