diff --git a/src/Shiny.Push/Platforms/Android/AndroidPushNotification.cs b/src/Shiny.Push/Platforms/Android/AndroidPushNotification.cs index 33129dc98..748e38633 100644 --- a/src/Shiny.Push/Platforms/Android/AndroidPushNotification.cs +++ b/src/Shiny.Push/Platforms/Android/AndroidPushNotification.cs @@ -22,8 +22,10 @@ public NotificationCompat.Builder CreateBuilder() if (not != null) { - // TODO: config OR click_action var intent = new Intent(not.ClickAction ?? ShinyPushIntents.NotificationClickAction); + foreach (var item in this.NativeMessage.Data) + intent.PutExtra(item.Key, item.Value); + var pendingIntent = PendingIntent.GetActivity( this.Platform.AppContext, 99,