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
fromservices 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 aservice 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:
Sample code that will create this issue
- Trampoline component: Here we have a
BroadcastReceiver
that willstart an activity
when the user taps on the notification action.
- Notification code:
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:
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

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 :
- Create a
PendingIntent
object that is associated with theactivity
that users see after they tap on the notification. - Use the
PendingIntent
object which is created in the previous step as part of building your notification.