A Library which will help you to easily ask all permission without writing a lot of codes.
Why this ?
1)It will automatically check whether the permission is granted or not.
2)If permission is granted -> No action else Permission will be asked.
3)Can ask multiple permission easily.
4)Denied Permission list will be provided.
How to Add :
Via Gradle:
repositories {
maven { url "https://jitpack.io" }
}
implementation 'com.github.sachinvarma:EasyPermission:1.0.1'
Via Maven:
<dependency>
<groupId>com.github.sachinvarma</groupId>
<artifactId>EasyPermission</artifactId>
<version>1.0.0</version>
</dependency>
How it works:
- Create a List of Permissions you want to ask,
List<String> permission = new ArrayList<>();
permission.add(EasyPermissionList.READ_EXTERNAL_STORAGE);
permission.add(EasyPermissionList.ACCESS_FINE_LOCATION);
- Call EasyPermissionInit,
new EasyPermissionInit(MainActivity.this, permission);
That's all
- Response will be received in onActivityResult()
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
switch (requestCode) {
case EasyPermissionConstants.INTENT_CODE:
if (data != null) {
boolean isGotAllPermissions =
data.getBooleanExtra(EasyPermissionConstants.IS_GOT_ALL_PERMISSION, false);
if(data.hasExtra(EasyPermissionConstants.IS_GOT_ALL_PERMISSION)){
if (isGotAllPermissions) {
Toast.makeText(this, "All Permissions Granted", Toast.LENGTH_SHORT).show();
} else {
Toast.makeText(this, "All permission not Granted", Toast.LENGTH_SHORT).show();
}}
// if you want to know which are the denied permissions.
if (data.getSerializableExtra(EasyPermissionConstants.DENIED_PERMISSION_LIST) != null) {
deniedPermissions = new ArrayList<>();
deniedPermissions.addAll((Collection<? extends String>) data.getSerializableExtra(
EasyPermissionConstants.DENIED_PERMISSION_LIST));
if (deniedPermissions.size() > 0) {
for (int i = 0; i < deniedPermissions.size(); i++) {
switch (deniedPermissions.get(i)) {
case EasyPermissionList.READ_EXTERNAL_STORAGE:
Toast.makeText(this, "Storage Permission not granted", Toast.LENGTH_SHORT)
.show();
break;
case EasyPermissionList.ACCESS_FINE_LOCATION:
Toast.makeText(this, "Location Permission not granted", Toast.LENGTH_SHORT)
.show();
break;
}
}
}
}
}
}
}
For more Details - >
This project needs you! If you would like to support this project's further development, the creator of this project or the continuous maintenance of this project, feel free to donate. Your donation is highly appreciated (and I love food, coffee and beer). Thank you!
PayPal
- Donate $5: Thank's for creating this project, here's a tea (or some juice) for you!
- Donate $10: Wow, I am stunned. Let me take you to the movies!
- Donate $15: I really appreciate your work, let's grab some lunch!
- Donate $25: That's some awesome stuff you did right there, dinner is on me!
- Donate $50: I really really want to support this project, great job!
- Donate $100: You are the man! This project saved me hours (if not days) of struggle and hard work, simply awesome!
- Donate $2799: Go buddy, buy Macbook Pro for yourself!
Of course, you can also choose what you want to donate, all donations are awesome!
LICENSE
Copyright (C) 2018 Sachin Varma
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.