Permission Manager


Source link: https://github.com/TheBrownArrow/PermissionManager

PermissionManager

Permission Manager is easily manage Android Marshmallow and nougat runtime permissions.

This library is backwards compatible. In pre-Marshmallow devices permissions are returned as given. This is done using the Android Support library AppCompatActivity and support Fragment methods for permissions.

Requirements

The library requires Android API Level 9+.

Installation

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 {

 compile 'com.github.TheBrownArrow:PermissionManager:1.0.0'  
}

How to Use this library

Inside Activity

Step 1. Extends ActivityManagePermission in your Activity.

public class MainActivity extends ActivityManagePermission {
  
}

Step 2. Example 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

 openSettingsApp(MainActivity.this);

}

  
}
);

Inside Fragment

Step 1. Extends FragmentManagePermission in your Fragment.

public class MainFragment extends FragmentManagePermission {
  
}

Step 2. Example 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

 openSettingsApp(MainActivity.this);

}

  
}
);

Advance Usage

Check whether a permission has been granted.

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

Check whether a multiple permission has been granted.

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

Open Application Setting

Need to class extend FragmentManagePermission for Fragment and ActivityManagePermission for Activity

openSettingsApp(MainActivity.this);

Multiple Permission

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

 openSettingsApp(MainActivity.this);

}

}
);

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

 openSettingsApp(MainActivity.this);

}

}
);

Let us know

We’d be really happy if you sent us links to your projects where you use our component. Just send an email to [email protected] And do let us know if you have any questions or suggestion regarding the Permission Manager.

License

Copyright © 2017 by The Brown Arrow  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. 

Resources

Simple Sliding Intro View

A simple, elegant and customizable library for implementing the swipe button.

AndroidMapperObject is an extension for MapperObject which allows you to transfer data between two objects.

It support's:

  • Object to Object data transfer
  • Collection to Collection data transfer

Binds Android Activity lifecycle callbacks to Activity fields annotated with @AirCycle.

Fields annotated with @AirCycle that are defined in an Activity will receive lifecycle callbacks of the enclosing Activity. The Activity does NOT need to implement any interface or extend any specific base class.

The field itself also does NOT need to implement any interface or extend any specific base class.

The binding class is generated in compile time using Java annotation processing, NO reflection is used at runtime. Since all classes are generated in compile time, it can safely be used with ProGuard.

Inspired by SoundCloud's LightCycle library. Compared to LightCycle, AirCycle supports passing of Activity lifecycle callbacks without the need to extend from a specific base Activity. Additionally, the listener classes are completely flexible, without the need to extend from any class or interface. This enables more flexibility when developing and further promotes composition over inheritance.

BasoProgressView is a library to help you start the ProgressBar and show error text with image also with retry or any-purpose button below it.

Removes the noise from float streams using Kalman Filter. Useful to smoothen sensory data e.g.: gps location, or Accelerometer.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes