Skip to content

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.