# AndPermission
android.permission.REQUEST_INSTALL_PACKAGES
android.permission.SYSTEM_ALERT_WINDOW
android.permission.BIND_NOTIFICATION_LISTENER_SERVICE
android.permission.WRITE_SETTINGS
AndPermission.with(this)
.runtime()
.permission(Permission.Group.STORAGE)
.onGranted(permissions -> {
// Storage permission are allowed.
})
.onDenied(permissions -> {
// Storage permission are not allowed.
})
.start();
For documentation and additional information see the website.
It only supports androidx, add dependencies in your gradle:
implementation 'com.yanzhenjie:permission:2.0.3'
AndPermission requires at minimum Android 4.0(Api level 14) .
Before submitting pull requests, contributors must abide by the agreement .
Copyright 2019 Zhenjie Yan
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.