Closed si458 closed 9 months ago
push notifications dont work with android 13/14 because when you first install the app, the notifications are set to DISALLOW, so we need a prompt to ask the user for permission to allow now https://developer.android.com/develop/ui/views/notifications/notification-permission#new-apps
need to add <uses-permission android:name="android.permission.POST_NOTIFICATIONS"/> to the manifest too also
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
push notifications dont work with android 13/14 because when you first install the app, the notifications are set to DISALLOW, so we need a prompt to ask the user for permission to allow now https://developer.android.com/develop/ui/views/notifications/notification-permission#new-apps
need to add
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
to the manifest too also