ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Follow publication

Notification trampoline restrictions-Android12

--

Did you ever notice?

  • Sometimes tapping a notification 🔔 and nothing happens for a couple of minutes, then it suddenly pops up? 😬

Starting with Android 12 notifications will not work if they do not start activities directly.

What is a Notification trampoline?

Some apps respond to notification taps by launching an app component (Service, BroadcastReceiver) that starts the activity that the user finally sees and interacts with. This app component is known as a notification trampoline.

Android12 restrictions

  • Applications that target Android 12 or higher can’t start activities from services or broadcast receivers that are used as notification trampolines.

Or

  • In simple words after the user taps on a notification or an action button within the notification, the app cannot call startActivity() inside of a service or broadcast receiver which helps to improve the app performance and user experience.

Error message in logcat

The system prevents the activity from starting when an application tries to start an activity from a service or broadcast receiver that acts as a notification trampoline, and the following message appears in Logcat:

NotificationTrampolineErrorMesage.kt

Sample code that will create this issue

  • Trampoline component: Here we have a BroadcastReceiver that will start an activitywhen the user taps on the notification action.
NotificationReceiver.kt
  • Notification code:
NotificationWithReceiverIntent.kt

Identify which app components act as notification trampolines

  • During the testing of the application, after you tap on a notification, you can identify which service or broadcast receiver acted as the notification trampoline in your app.
  • To do so, look at the output of the following terminal command:
CommandToFindNotificationTrampolines.kt

Toggle the behavior

During the testing of a debuggable version of the application, we can enable and disable this restriction using the NOTIFICATION_TRAMPOLINE_BLOCK app compatibility flag.

You can find it under the developer options

App compatibility flag

Update your app

  • If you find that your application starts an activity from a service or broadcast receiver that acts as a notification trampoline, complete the following migration steps :
  1. Create a PendingIntent object that is associated with the activity that users see after they tap on the notification.
  2. Use the PendingIntent object which is created in the previous step as part of building your notification.
NotificationBuilderSample.kt

😊😊 👏👏👏👏 HAPPY CODING 👏👏👏👏 😊😊

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Published in ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Written by Nav Singh

Google Developer Expert for Android | Mobile Software Engineer at Manulife | Organizer at GDG Montreal

Responses (8)

Write a response