Skip to content

Android 14 Full screen Intent Notifications

Jakub Dzubak edited this page Jan 16, 2024 · 1 revision

Starting from Android 14, Google checks if applications are allowed to use the USE_FULL_SCREEN_INTENT permission and possibly revokes the permission. More information can be found on official Android documentation.

The InfobipRtcUi library uses Full-screen intent notifications for incoming calls. We recommend to check if your application has the permission. You can use the new API NotificationManager.canUseFullScreenIntent to check if your app has the permission; if not, your app can use the new intent ACTION_MANAGE_APP_USE_FULL_SCREEN_INTENT to launch the settings page where users can grant the permission.

Notice:

Without USE_FULL_SCREEN_INTENT permission, normal intent is used for incoming call notification, what can lead to missing a call if the phone is locked.

Clone this wiki locally