Permissify

Simplifying Android Permissions
Alternatives To Permissify
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Easypermissions9,6731a month ago3August 13, 201928apache-2.0Java
Simplify Android M system permissions
Permissionskit5,213
2a month ago67November 01, 20215mitSwift
Universal API for request permission and get its statuses.
Dexter5,00374192 years ago34July 02, 202134apache-2.0Java
Android library that simplifies the process of requesting permissions at runtime.
Permissionx2,659
8 months ago10September 18, 20222apache-2.0Kotlin
An open source Android library that makes handling runtime permissions extremely easy.
Tedpermission1,572
a year ago8October 27, 202122Java
Easy check permission library for Android Marshmallow
Quickpermissions432
5 years ago5apache-2.0Kotlin
The most easiest way to handle Android Runtime Permissions
Fcpermissions404
7 years ago5Java
Fuck the permissions in Android M
Permissify373
7 years ago1mitJava
Simplifying Android Permissions
Locus Android306
20 days ago1January 11, 202210apache-2.0Kotlin
An Awesome Kotlin Location library to retrieve location merely in 3 lines of code
Permissiongrantor286
4 years ago1Java
一行代码搞定Android6.0动态权限授权、权限管理 || Android permission grantor util
Alternatives To Permissify
Select To Compare


Alternative Project Comparisons
Readme

Permissify - Simplifying Android Permissions

Permissify is an Android library that makes requesting permissions at runtime much easier.

Android Marshmallow added a new functionality to let users grant permissions when running an app instead of granting them all when installing it. This approach gives the user more control but requires developers to add lots of boilerplate code to support it.

Overview

  • Tested in production - over 1000 000 installs in the Holidaycheck app
  • Handles showing Rationale & Permission denied dialogs
  • Consistent API across android versions
  • Perfectly fine with configuration changes
  • API for activity and fragment
  • Works great without hacking android
  • No memory leaks guaranteed
  • Supports Android 15+

Screenshots

Demo screenshot

Add it to your project

Include the library in your build.gradle

dependencies{
    compile 'com.holidaycheck:permissify:1.0.0'
}

or to your pom.xml if you are using Maven

<dependency>
    <groupId>com.holidaycheck</groupId>
    <artifactId>permissify</artifactId>
    <version>1.0.0</version>
    <type>aar</type>
</dependency>

Configuration

To start using the library you need to extend your activity from PermissifyActivity and configure library in your custom android.app.Application.

Minimum configuration to run is presented below. You basically need to provide translations for every Permission group that is used in your app.

public class Application extends android.app.Application {

    @Override
    public void onCreate() {
        super.onCreate();

        PermissifyConfig permissifyConfig = new PermissifyConfig.Builder()
            .withDefaultTextForPermissions(new HashMap<String, DialogText>() {{
                 put(Manifest.permission_group.LOCATION, new DialogText(R.string.location_rationale, R.string.location_deny_dialog));
                 put(Manifest.permission_group.CAMERA, new DialogText(R.string.camera_rationale, R.string.camera_deny_dialog));
                }})
              .build();

        PermissifyConfig.initDefault(permissifyConfig);
    }
}

Full configuration looks like this, but mostly you will use minimum config. You can customize default options for every permission call, and dialogs appearance. See javadoc for more details.

PermissifyConfig permissifyConfig = new PermissifyConfig.Builder()
    .withDefaultPermissionCallOptions(
        new PermissionCallOptions.Builder()
            .withDefaultDenyDialog(true)
            .withDefaultRationaleDialog(true)
            .withDefaultRationaleDialog(R.string.default_rationale_dialog_text)
            .withDenyDialogMsg(R.string.default_deny_dialog_text)
            .withRationaleEnabled(true)
            .build()
    )
    .withDefaultTextForPermissions(new HashMap<String, DialogText>() {{
        put(Manifest.permission_group.LOCATION, new DialogText(R.string.location_rationale, R.string.location_deny_dialog));
        put(Manifest.permission_group.CAMERA, new DialogText(R.string.camera_rationale, R.string.camera_deny_dialog));
    }})
    .withPermissionTextFallback(new DialogText(R.string.fallback_rationale_dialog_text, R.string.fallback_deny_dialog_text))
    .withDialogRationaleDialogFactory(new PermissifyConfig.AlertDialogFactory() {
        @Override
        public AlertDialog createDialog(Context context, String dialogMsg, DialogInterface.OnClickListener onClickListener) {
            return new CustomRationaleDialog(context, dialogMsg, onClickListener);
        }
    })
    .withDenyDialogFactory(new PermissifyConfig.AlertDialogFactory() {
        @Override
        public AlertDialog createDialog(Context context, String dialogMsg, DialogInterface.OnClickListener onClickListener) {
            return new CustomDenyDialog(context, dialogMsg, onClickListener);
        }
    })
    .build();

PermissifyConfig.initDefault(permissifyConfig);

Usage

To request specific permission you need make a call to PermissifyManager. Every call is associated with your unique RequestId.

getPermissifyManager().callWithPermission(this, LOCATION_PERMISSION_REQUEST_ID, android.Manifest.permission.ACCESS_FINE_LOCATION);

the result and the current permission status is provided via

@Override
public void onCallWithPermissionResult(int callId, PermissifyManager.CallRequestStatus status) {
    if (callId == LOCATION_PERMISSION_REQUEST_ID) {
        switch (status) {
            case PERMISSION_GRANTED:
                getUserLocation();
            break
            case PERMISSION_DENIED_ONCE:
            //do some custom logic
            break;
            case PERMISSION_DENIED_FOREVER:
            //do some custom logic
            case SHOW_PERMISSION_RATIONALE:
            //do some custom logic
        }
    }
}

If you want to request permission from a fragment make sure it implements PermissifyManager.Callback

There are two types of dialogs:

  • Rationale dialog - is shown in situations where the user might need an explanation why the app needs this permission
  • Deny dialog - is shown when the user permanently denied requested permission

There are number of options that you can change when requesting for permission using additional parameter:

getPermissifyManager().callWithPermission(this, LOCATION_PERMISSION_REQUEST_ID, android.Manifest.permission.ACCESS_FINE_LOCATION,
            new PermissionCallOptions.Builder()
                .withDefaultDenyDialog(false)
                .withRationaleEnabled(false)
                .build());

Current limitations

  • Multiple permission request at once is not currently supported (will be added soon)

Do you want to contribute?

Feel free to add any cool and useful feature to the library.

License

The MIT License (MIT)

Copyright (c) 2016 HolidayCheck

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Popular Permission Projects
Popular Dialog Projects
Popular Security Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Java
Permissions
Dialog
Fragments