PermissionHelper
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
Demo
A demo app is available 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
Developed By
Rurio Luca- [email protected]
App using PermissionHelper
- Material Qr
- Volo
- Volo Oss
- Gespat
- PermissionManager
- 2017 Best Status - Quotes
- My Notebook
- Styled Map With Pager
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.