cordova-plugin-android-permissions icon indicating copy to clipboard operation
cordova-plugin-android-permissions copied to clipboard

This plugin is designed for supporting Android new permissions checking mechanism.

Results 64 cordova-plugin-android-permissions issues
Sort by recently updated
recently updated
newest added

When trying to request NFC access from the user I use 'permissions.NFC' and the permissions popup does not come up. I'm following the Manifest.permission webpage documentation for the right syntax....

Android 13 is gonna be released on August. Any detail for supporting it? Especially refering to this : https://developer.android.com/about/versions/13/behavior-changes-13 With the new permissions ``` ... ```

``` BLUETOOTH_CONNECT: 'android.permission.BLUETOOTH_CONNECT', BLUETOOTH_SCAN: 'android.permission.BLUETOOTH_SCAN', ``` Are missing in the android-permission package and should be added as soon as possible!

when i request for the location permission it doesn’t show allow all the time in the popup. i have already added ACCESS_BACKGROUND_LOCATION in the manifest.

Hello, I am trying to integrate the code in ionic 1. I am not getting the popup of requesting permission on android 6 and above both emulator and android phones....

i'm trying with Ionic 6 and capacitor to ask the permission for ACCESS_BACKGROUND_LOCATION, but nothing is happening when i call androidPermission.requestPermission(androidPermission.PERMISSION.ACCESS_BACKGROUND_LOCATION). Instead if i request other permission all works properly....

Can't request WRITE_EXTERNAL_STORAGE on android 7, requestPermission simply returns with status.hasPermission set to false. It does not request for permission. The same will work if I ask for the CAMERA...

When i used `READ_EXTERNAL_STORAGE`, it shows `Allow app to access photos and media on your device?` but I want to request `Allow app to access photos,media and files on your...

When trying to request some permission, if it is not declared on AndroidManifest.xml, Android will not even try to request it and directly return false when checking. I solved this...

Hi. In readme, there is a example for multiple permission : ``` var list = [ permissions.CAMERA, permissions.GET_ACCOUNTS ]; permissions.hasPermission(list, callback, null); ``` I don't know why the author used...