react-native-push-notification: [Android 13] Missing notifications permission
Bug
Since Android API 33 developers are obliged to manually request permissions for push notifications
This library is not doing that for Android, so push notifications do not work on Android 13.
Would be nice to have that permissions request added when we use requestPermissions: true
About this issue
- Original URL
- State: open
- Created 2 years ago
- Reactions: 1
- Comments: 18
Good afternoon everyone, today the same thing happened to me with my application and the solution for me was the following:
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" />
I hope the answer can be of help to those who are having this problem. Greetings
Bruh… I just had DND on… I debugged for 3 hours…
@komailabbas12 I did, even requsted Notification permission. did not work…