cordova-plugin-android-permissions
cordova-plugin-android-permissions copied to clipboard
Permission Dialog not working wit Android 15 - Security Update May 2025
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
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