Is it possible to automatically grant permissions for push notifications on Mendix Native in Android 13?

0
Hello all, Is it possible to automatically grant permissions for push notifications on Mendix Native in Android 13? We have a project in Mendix v9.24.22 with the Push Notifications Connector Module. We noticed when we install the APK on mobile devices with Android 13, the user will have to launch the app and grant permissions in order to recieve the push notifications, whereas devices with lower versions of Android would not need to grant permissions to recieve the push notification. Thank you in advance. Rehan
asked
1 answers
1

This was a change in the way Android was set up to provide users with more granular control over permissions, and to allow developers to decide when to ask for permission rather than when the first notification channel was created.

https://developer.android.com/develop/ui/views/notifications/notification-permission

 

Automatic granting of permissions is, as far as I know, not possible, which makes sense because it would overrule the user's wishes.

answered