Skip to content
Client v5: BLE, BLE Hosting, HTTP, Jobs - Linux, MacOS, & Blazor Support! Full AOT, RX on BLE only & MANY other features! Check It Out

Frequently Asked Questions


IPushDelegate.OnEntry is not firing when I tap a notification

Two things must be configured:

1. Set click_action in your push payload to match the intent filter.

2. Add the intent filter to your MainActivity:

[IntentFilter(
new[] { Shiny.ShinyPushIntents.NotificationClickAction },
Categories = new[] { "android.intent.category.DEFAULT" }
)]
public class MainActivity : MauiAppCompatActivity
{
}

Without both of these, Android won’t route the tap to Shiny’s delegate.