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
A demo app is available on Google Play:
The library requires Android API Level 15+.
in build.gradle
allprojects {
repositories {
jcenter()
}
}
dependencies {
implementation 'com.auron:permission-manage:1.2.0'
}
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);
}
});
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);
}
});
boolean isGranted = isPermissionGranted(MainActivity.this,PermissionUtils.Manifest_WRITE_EXTERNAL_STORAGE);
boolean isGranted = isPermissionsGranted(MainActivity.this,new String[]{PermissionUtils.Manifest_WRITE_EXTERNAL_STORAGE,PermissionUtils.Manifest_CAMERA});
The permission class utils contains the permissions you need to ask runtime
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);
}
});
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);
}
});
need class extend FragmentManagePermission or ActivityManagePermission
openSettingsApp(MainActivity.this);
Rurio Luca- rurio.luca@gmail.com
- Material Qr
- Volo
- Volo Oss
- Gespat
- PermissionManager
- 2017 Best Status - Quotes
- My Notebook
- Styled Map With Pager
- Mercatini Usato
send me your apps! rurio.luca@gmail.com
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.