chemerisuk / cordova-plugin-firebase-messaging

Cordova plugin for Firebase Cloud Messaging
MIT License
164 stars 159 forks source link

Android is requesting a new permission for notification in Android 13 #239

Closed Eduardochimchek closed 10 months ago

Eduardochimchek commented 10 months ago

Android 13 introduces a new execution permission for notifications: POST_NOTIFICATIONS.

Applications that do not have this new type are not receiving notifications in background mode.

The permission that you need to declare in app manifest file appears in the following code snippet:

`<manifest ...>

<application ...>
    ...
</application>

`

@chemerisuk PLEASE UPDATE PLUGIN

Eduardochimchek commented 10 months ago

follow link for further instructions: https://developer.android.com/develop/ui/views/notifications/notification-permission

chemerisuk commented 10 months ago

Fixed in v8.

Eduardochimchek commented 10 months ago

Thank you, now everything works ok.