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

Hello everyone. I have a little problem. Currently I have an APP which for its correct operation I must read the IMEI of the device. I discovered the problem when...

``` var permissions = cordova.plugins.permissions; permissions.requestPermission(permissions.RECORD_AUDIO, function(){ // App crashes here }, function(){ }); ```

The examples use hasPermission and requestPermission. From what I understand of what's written just few lines before, those are deprecated functions. I think that using deprecated functions in sample code...

![image](https://user-images.githubusercontent.com/39522484/72043246-a3800180-32eb-11ea-958b-ce73624f7d32.png) How to apply for notification permission?

![image](https://user-images.githubusercontent.com/17617042/41188898-5a567adc-6be3-11e8-9ad8-69aecdacd0e9.png) This is the error I am getting while using this plugin in Ionic 1.

For checking call permission of app I'm using this method `this._androidPermission.checkPermission(this._androidPermission.PERMISSION.CALL_PHONE)` And always it returns false.

cordova plugin does not fire a failure or success callback when requestPermission() is called on the very first install of the apk via USB cable or on emulator or from...

I expect that a call of `cordova.plugins.permissions.requestPermission` will always trigger the success callback, even if a user decides that a permission shall not be granted. Example: ``` javascript cordova.plugins.permissions.requestPermission( cordova.plugins.permissions.CAMERA,...

I am not able to see permission popup coming for camera. getting this error plugin not installed. though plugin is very much installed. Its an angular 6 app and I...