Android SDK 33 - Any potential updates?

With may exciting adventures 3963 got released - https://solar2d.com/download/3693. It targets Android 33. Biggest change is now Android requires a pop up to ask for notification permissions. It can look like

local options =
{
  appPermission = "android.permission.POST_NOTIFICATIONS",
  urgency = "Critical",
  listener = appPermissionsListener,
  rationaleTitle = "Notification access required",
  rationaleDescription = "Notification access is required to send notifications",
  settingsRedirectTitle = "Alert",
  settingsRedirectDescription = "Without the ability to take notification, this app cannot properly function. Please grant notification access within Settings."
}
native.showPopup( "requestAppPermission", options )

We would incorporate the pop-up into the notification Plugin to be automatic soon, but probably to have it manually triggered.

3 Likes