You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
not sure why cant start PR.
But can I kindly ask you to create also function to remove notification?
often happens, that I receive notificaiton, open app manualy (without notification) and read the content, therefore notification is no longer relevant, but by this way the notification stays therefe forever till i swipe it out or click on it...
in Android (java), its something like:
NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
int notificationId = 1; // Replace with your notification ID
notificationManager.cancel(notificationId);
in iOS (Swift):
let center = UNUserNotificationCenter.current()
let notificationId = "your_notification_id" // Replace with your notification ID
center.removeDeliveredNotifications(withIdentifiers: [notificationId])
but how to manage from QT, this would be extremly usefull enhancement of firebase-qt :)
The text was updated successfully, but these errors were encountered:
hello Dante,
not sure why cant start PR.
But can I kindly ask you to create also function to remove notification?
often happens, that I receive notificaiton, open app manualy (without notification) and read the content, therefore notification is no longer relevant, but by this way the notification stays therefe forever till i swipe it out or click on it...
in Android (java), its something like:
in iOS (Swift):
but how to manage from QT, this would be extremly usefull enhancement of firebase-qt :)
The text was updated successfully, but these errors were encountered: