I have the latest Mobile Notification package installed (2.4.0) and have been trying to schedule very simple notifications, but they are delayed by many hours.
public void ScheduleNotification(string title, string text, NOTIFICATION_CHANNEL channel, int fireTimeInSeconds)
{
var notification = new AndroidNotification();
notification.Title = title;
notification.Text = text;
notification.FireTime = System.DateTime.UtcNow.AddSeconds(fireTimeInSeconds);
notification.SmallIcon = "icon_0";
notification.LargeIcon = "icon_1";
AndroidNotificationCenter.SendNotification(notification, channel.ToString());
}
I register the channels as well and have the permission.