chemerisuk / cordova-plugin-firebase-messaging

Cordova plugin for Firebase Cloud Messaging

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Android is requesting a new permission for notification in Android 13

Eduardochimchek opened this issue · comments

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 ...> <uses-permission android:name="android.permission.POST_NOTIFICATIONS"/> <application ...> ... </application> </manifest>

@chemerisuk
PLEASE UPDATE PLUGIN

Fixed in v8.

Thank you, now everything works ok.