SimplePermissions icon indicating copy to clipboard operation
SimplePermissions copied to clipboard

This library allows you easily implement Android marshmallow permissions. The list of permissions, if I miss any permission please add and send me pull request.

Results 1 SimplePermissions issues
Sort by recently updated
recently updated
newest added

When the permissions are already granted, and I try to re-request them, nothing happens. That is because of `PermissionActivity.java`: ``` if (!permissionsToRequest.isEmpty()) { ActivityCompat.requestPermissions(this, permissionsToRequest.toArray(new String[permissionsToRequest.size()]), PERMISSION_REQUEST_CODE); } ``` I...