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

Permission Dialog not working wit Android 15 - Security Update May 2025

Open kiwi-x opened this issue 5 months ago • 2 comments

Hi,

we have several apps using this plugin.

But after updating my pixel phone to latest security path, I can't answer the permission dialog anymore.

I open the app, I request i.e. the media images permission with

        permissions.requestPermission(permissions.READ_MEDIA_IMAGES, success, error);
        function error() {
          console.warn('Permissions not granted!');
        }
        function success( status ) {
          if(!status.hasPermission) error();
}

The permission dialog opens

Image

But I can't answer or close this dialog.

The only hint I fould was that Google changed something in the Permission Controller

Permission Controller CVE-2025-26420, CVE-2025-26425

See: https://source.android.com/docs/security/bulletin/2025-05-01

Has anybody the same issues?

-- kiwix

kiwi-x avatar May 16 '25 10:05 kiwi-x