Daniel

Results 11 comments of Daniel

Hi, i just tested the pre-release 4.0.20-pre and the `NotificationReceived `is now firing in android, but the system popup is not shown when app is in foreground and channel importance...

@thomasgalliker i have the channel set to high and also the message has priority high in data. I think otherwise it wouldnt have worked in 3.2.11 right? Still in the...

Oh thanks that wont be necessary - I dont want to wast your precious time. As long as there is no bug in the project and in your tests it...

Update: `firebasePushNotification.NotificationBuilder.OnNotificationReceived(data)` is mandatory in `NotificationReceived` for displaying notficaiton in foreground. Also removing the bin/obj folder and rebuilding helped solve the issue.

Ok first of all i want to point out that it worked fine in version 3.2.11 - just like in your official demo project - only problem there was that...

> What did you configure in `.UseFirebasePushNotifications(o => ...` ? .UseFirebasePushNotifications(options => { #if ANDROID NotificationChannelRequest defaultChannel = new NotificationChannelRequest() { ChannelId = "default", ChannelName = "Default", IsDefault = true,...

Yes I am calling the `await INotificationPermissions.Current.RequestPermissionAsync();`on OnStart of the App. If i keep the `OnNotificationReceived `commented out in the `NotificationReceived` i dont get notifications in foreground in version 4.0.20-pre....

Hi, i just tested the pre-release 4.0.20-pre and version 3.2.11 - iOS Pushnotifications work for fine for as long as the app is in background. As soon as the app...

Update: I found out what was causing the problem: Having also another NUGET package in use like `Plugin.LocalNotification` keeps the foreground functionality of this package from working as intended. Without...

Another Update: To get iOS foreground notifications to work dont forget to set the PresentationOptions in mauiprogram like this: `options.iOS.PresentationOptions = UNNotificationPresentationOptions.Alert | UNNotificationPresentationOptions.Sound | UNNotificationPresentationOptions.Badge;` Alternatively if above is...