Giter VIP home page Giter VIP logo

sbpermission's Introduction

sbpermission


Setup

To get a Git project into your build:

Step 1. Add the JitPack repository to your build file

Add it in your root build.gradle at the end of repositories:

allprojects {
    repositories {
      ...
      maven { url 'https://jitpack.io' }
    }
}

Step 2. Add the dependency

dependencies {
    implementation 'com.github.stonybean:sbpermission:1.0.3'
}

Share this release:


How to use

Simple

// Start checkPermission
val permissionBuilder = PermissionBuilder(context)
permissionBuilder.checkPermissions()

With options

val permissionBuilder = PermissionBuilder(context)

// Add Listener
val permissionListener = object : PermissionListener {
    override fun onPermissionGranted(grantedPermissions: ArrayList<String>) {
        // Do somthing..
        for (grantedPermission in grantedPermissions) {
            if (grantedPermission == Manifest.permission.CAMERA) {
                // do something..
            }
            ...
        }
    }

    override fun onPermissionDenied(deniedPermissions: ArrayList<String>) {
        // Do somthing..
        for (deniedPermission in deniedPermissions) {
            if (deniedPermission == Manifest.permission.CAMERA) {
                // do something..
            }
            ...
        }
    }
}

// Start checkPemission with options
permissionBuilder.setWindowPermission(true)
            .setWindowDialogMessage("message..")
            .setDeniedDialog(true)
            .setDeniedDialogMessage(R.string.deniedDialogMessage)
            .setPermissions(
                Manifest.permission.CAMERA,
                Manifest.permission.CALL_PHONE,
                Manifest.permission.READ_CONTACTS
            )
            .setPermissionListener("MyListener", permissionListener)
            .checkPermissions()

Details

  • setWindowPermission(Boolean)
    : Set up a overlay permission

  • setWindowDialogMessage(String or R.string.xxx) (default getString(R.string.windowDialogMessage))
    : Set up a dialog message when setting up overlay permission

  • setDeniedDialog(Boolean)
    : Show dialog when rejecting to set up a permission

  • setDeniedDialogMessage(String or R.string.xxx) (default getString(R.string.deniedDialogMessage))
    : Set up a dialog message when rejecting to set up a permission

  • setPermissions(vararg String) (If you do not add permissions, it will be added default all dangerous permissions automatically.)
    : Add permission list you need

  • setPermissionListener(String, PermissionListener)
    : Set permission listener

  • checkPermissions
    : Start checkPermissions

sbpermission's People

Contributors

stonybean avatar

Watchers

 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.