Android Push Notification Permission
Posted: Wed Oct 04, 2023 3:26 am
I can get permissions for things like location services and the camera, but for the life of me I cannot get push notification permissions to pop up. Any help on why this is would be appreciated.
This code is within openCard on start up after requesting precise location permissions. Should it be somewhere else?
Code: Select all
put androidHasPermission("android.permission.RECEIVE_WAP_PUSH") into tNotificationPermissionGranted
if not tNotificationPermissionGranted then
androidRequestPermission "android.permission.RECEIVE_WAP_PUSH"
end if
if not tNotificationPermissionGranted then
answer "This app is not permitted to receive push notifications. You must change this in the settings app prior to using this app"
end if