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.
The library requires Android API Level 9+.
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.Enlistech:PermissionManager:1.0.0'
}
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);
}
});
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);
}
});
boolean isPermissionGranted = isPermissionGranted(MainActivity.this, PermissionUtils.Manifest_WRITE_EXTERNAL_STORAGE);
boolean isPermissionGranted = isPermissionsGranted(MainActivity.this, new String[] {PermissionUtils.Manifest_WRITE_EXTERNAL_STORAGE, PermissionUtils.Manifest_CAMERA});
Need to class extend FragmentManagePermission
for Fragment
and ActivityManagePermission
for Activity
openSettingsApp(MainActivity.this);
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);
}
});
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);
}
});
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.
Copyright © 2017 by Enlistech
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.