Giter Site home page Giter Site logo

pandalion98 / permissionmanager Goto Github PK

View Code? Open in Web Editor NEW

This project forked from rurioluca/permissionmanager

0.0 2.0 0.0 538 KB

Helper to ask permission on android marshmallow

Home Page: http://rurioluca.github.io/MarshmallowPermissionManager/

License: MIT License

Java 100.00%

permissionmanager's Introduction

PermissionHelper

Platform (Android)  Android Arsenal GitHub license Codewake Download API GitHub stars GitHub forks GitHub issues

Helper to ask runtime permission on android marshmallow and nougat

The library takes care themselves to check whether a permit has already been agreed by the user or not. if the user has given consent call the system dialog for the acceptance

Logo

Screen

Demo

A demo app is available on Google Play:

Get it on Google Play

Requirements

The library requires Android API Level 9+.

Import

in build.gradle

allprojects {
    repositories {
        jcenter()
    }
}
dependencies {
 compile 'com.auron:permission-manage:1.1.7'
}

How to use

Activity

Activity extends ActivityManagePermission

public class MainActivity extends ActivityManagePermission {

}

sample usage to ask camera permission

  askCompactPermission(PermissionUtils.Manifest_CAMERA, new PermissionResult() {
                    @Override
                    public void permissionGranted() {
                        //permission granted
                        //replace with your action
                    }

                    @Override
                    public void permissionDenied() {
                        //permission denied
                        //replace with your action
                    }
                       @Override
                    public void permissionForeverDenied() {
                     // user has check never ask again
                     // you need to open setting manually
                     //  Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
                     //  Uri uri = Uri.fromParts("package", getPackageName(), null);
                     //   intent.setData(uri);
                     //  startActivityForResult(intent, REQUEST_PERMISSION_SETTING); 
                    }
                });

Fragment

FragmentHome extends FragmentManagePermission

public class FragmentHome extends FragmentManagePermission {

}

sample usage to ask camera permission

  askCompactPermission(PermissionUtils.Manifest_CAMERA, new PermissionResult() {
                    @Override
                    public void permissionGranted() {
                        //permission granted
                        //replace with your action
                    }

                    @Override
                    public void permissionDenied() {
                        //permission denied
                        //replace with your action
                    }
                     @Override
                    public void permissionForeverDenied() {
                     // user has check never ask again
                     // you need to open setting manually
                     //  Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
                     //  Uri uri = Uri.fromParts("package", getPackageName(), null);
                     //   intent.setData(uri);
                     //  startActivityForResult(intent, REQUEST_PERMISSION_SETTING); 
                    }
                });

Advance Usage

check whether a permit has been agreed

boolean isGranted = isPermissionGranted(MainActivity.this,PermissionUtils.Manifest_WRITE_EXTERNAL_STORAGE);

check whether multiple permission has been agreed

boolean isGranted = isPermissionsGranted(MainActivity.this,new String[]{PermissionUtils.Manifest_WRITE_EXTERNAL_STORAGE,PermissionUtils.Manifest_CAMERA});

PermissionUtils

The permission class utils contains the permissions you need to ask runtime

Multiple Permissions

  askCompactPermissions(new String[]{PermissionUtils.Manifest_CAMERA, PermissionUtils.Manifest_WRITE_EXTERNAL_STORAGE}, new PermissionResult() {
            @Override
            public void permissionGranted() {
                //permission granted
                //replace with your action
            }

            @Override
            public void permissionDenied() {
                //permission denied
                //replace with your action
            }
             @Override
                    public void permissionForeverDenied() {
                     // user has check 'never ask again'
                     // you need to open setting manually
                     //  Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
                     //  Uri uri = Uri.fromParts("package", getPackageName(), null);
                     //   intent.setData(uri);
                     //  startActivityForResult(intent, REQUEST_PERMISSION_SETTING); 
                    }
        });

Group Permissions

  askCompactPermission(PermissionUtils.Manifest_GROUP_STORAGE, PermissionUtils.Manifest_WRITE_EXTERNAL_STORAGE}, new PermissionResult() {
            @Override
            public void permissionGranted() {
                //permission granted
                //replace with your action
            }

            @Override
            public void permissionDenied() {
                //permission denied
                //replace with your action
            }
             @Override
                    public void permissionForeverDenied() {
                     // user has check 'never ask again'
                     // you need to open setting manually
                     //  Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
                     //  Uri uri = Uri.fromParts("package", getPackageName(), null);
                     //   intent.setData(uri);
                     //  startActivityForResult(intent, REQUEST_PERMISSION_SETTING); 
                    }
        });

Open Setting Application

need class extend FragmentManagePermission or ActivityManagePermission

 openSettingsApp(MainActivity.this);

Javadoc

Javadoc thanks to rebus007

Developed By

Rurio Luca- [email protected]

Linkedin

App using PermissionHelper

send me your apps! [email protected]

License

The MIT License (MIT)

Copyright (c) 2016 Rurio Luca

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.

permissionmanager's People

Contributors

rurioluca avatar tejashah88 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.