Flutter Android Firebase Messaging add custom icon for notification
I am using firebase_messaing inside my Flutter app. I can receive notifications on the Android Simulator, but the icon is just a bordered circle: How can I change that icon?
I am using firebase_messaing inside my Flutter app. I can receive notifications on the Android Simulator, but the icon is just a bordered circle: How can I change that icon?
I am working on a project. The project requirement is that, when FCM notification arrives a specific activity opens without user interaction. This means I don't want to open the activity by notification clicking instead I want to open the…
i am using firebase cloud messaging to send a push notification.I want to schedule the notification using workmanager package.I have also tried with zoneschedule method of flutter local notification package ,but it gives the notification when the app run in…
I am using a cloud functions to send a fcm message to the admins phone every time the bookings collection has a new document here: const functions = require("firebase-functions"); const admin = require("firebase-admin"); admin.initializeApp(); exports.sendBookingNotification = functions.firestore .document("bookings/{bookingId}") .onCreate(async (snapshot,…
I have implemented firebase background notification messages, therefore I had to put firebase-messaging-sw.js file in public folder. I need to access state, which determines language of the website inside firebase-messaging-sw.js. I am using useContext to manage state. Here is the…
I'm trying to initialize Firebase messaging onBackgroundMessage and I'm getting a very unusual error I've tried every approach I know and can find the error still persists. Future<void> handleBackgroundMessage(RemoteMessage message) async { final notification = message.notification; if (notification != null)…
I have an application where I need to generate push notifications to individual users based on application permissions. I have an Angular frontend using Firebase Cloud Messaging to generate and store token for the user to my server via an…
I have enabled developer mode in flutter app development. I am using Firebase Cloud Messaging to send notifications. everything works fine There is a notification coming to the normal app. But after a while I can no longer send notifications…
I am trying to build a cross platform app (only works on android for now) with Flutter, that notifies the user when a operation is ongoing (for volunteer firefighters) and they can send feedback if they will be participating. I…
I have implemented push notifications using FCM in my Flutter app. Next, I want to allow users to control the ON/OFF state of receiving push notifications based on their content (similar to receiving push notifications for "likes" on their own…