Questions tagged [firebase-notifications]

Firebase Notifications is a free service that enables targeted user notifications for mobile app developers. Firebase Notifications is a cross-platform solution that lets you easily deliver notifications at no cost.

About Firebase Notifications

Firebase Notifications is a component of the Firebase suite of tools for cross-platform application development.

  • Send free and unlimited notifications across Android, and iOS.
  • Send messages and analyze effectiveness in one dashboard without writing any code
  • Integrate with Firebase Analytics to deliver messages to a user segment

Related tags

749 questions
0
votes
1 answer

Firebase android audience

If I have a preference of whether the user wants to enable notification or not. Which event should I send so that I can exclude this user when sending the notification?
weijia_yu
  • 965
  • 4
  • 14
  • 31
0
votes
2 answers

Firebase Notifications doesn't come on my device

I implemented Firebase as indicated in Google documentation. I send message from Firebase Console. But notifications don't come on my device. Can you help me? Thank you in advance. In my `AndroidManifest.xml
0
votes
1 answer

See all Firebase notifications sent via HTTP protocol

I can see a list of the notifications sent via the Firebase console. However, if I send a notification via the HTTP protocol (https://fcm.googleapis.com/fcm/send) it is not in the list. Where can I see the complete list of sent…
0
votes
1 answer

Group Firebase FCM on Android Device

I am trying to send cloud messages using the Firebase console. I am doing this for android device. The push notifications do appear on the device fine along with the data sent with it. But each notification shows up on its own. Meaning if I send 3…
0
votes
1 answer

Firebase | Remote Notification does not show up, swift 3.0

I have a problem that Firebase Remote notifications doesn't show up. My notifications are enabled in Target -> capabilities and Firebase is also installed. On the Firebase website, when I try to send a notification, it closes instantly. Received 0…
0
votes
1 answer

Android - According to what Firebase refreshing token

Maybe it is not important but I dont understood that when onTokenRefresh() function running.. Thank you Edit : I m using FCM Notification on my Android project. My app send message to specific users with "registration token id"(I'm storing this). I…
0
votes
2 answers

Firebase push notification not showing on ios10

I'm using Xcode 7 and developing an app with push notification. However, I found out that all push notifications cannot be shown on iOS 10 devices. Is there any solution to fix it? P.S. push notification is working fine on iOS 9.
0
votes
0 answers

GCM Notification received but no Sound & Vibrate

I tried & searched so many times, but I'm not getting what's wrong here in my code. Some devices play a sound, but some don't. Ex: Samsung Note 3, Samsung on5, lecco le s2. I'm using 9.4 GCM API. Error: 10-24 21:30:03.396 6813-6813/apk.apk.com…
0
votes
1 answer

Firebase Console Notification sending error after updating app, previously working

I am getting an error when I try to send messages via the Firebase Notification screen in the console. It says I have an invalid token format, but I have used previously used tokens collected with the same method successfully. I was not getting this…
0
votes
1 answer

Sending Firesbase Notification to Multiple Users

I am trying to send notifications through Firebase, but it is not working. I just want to send to all my registered users with their Firebase ID stored in MySQL. EDIT: Here is the code below.
0
votes
0 answers

Error while using FCM dependency and exception on chaging the version

I'm using FCM for the first time and I have added the dependencies in my already existing project. Now when I try to run it, I'm getting this error: Error:Execution failed for task ':app:packageAllDebugClassesForMultiDex'. >…
0
votes
2 answers

InvocationTargetException on FCM message received caused by NoSuchMethodError

When an FCM message is sent to the device. The app crashes with this error: Caused by: java.lang.NoSuchMethodError: No static method zzz(Ljava/lang/Object;)Ljava/lang/Object; in class Lcom/google/android/gms/common/internal/zzaa; or its super…
suku
  • 10,507
  • 16
  • 75
  • 120
0
votes
0 answers

Real-time notifications with Firebase & Ionic

NOTE : Don't say it's possible duplicate of this, Read through. Think of a simple TASK Management application which can have n number of users. Say User A can create a task & assign it to User B. I want to show a notification to User B. I am…
0
votes
1 answer

Stacked notifications not working on closed app

I get the stacked notifications working if the app is opened but not when the app is closed. If the app is closed the icon is incorrect and the notifications are not stacked? Here is my code: notification = new…
0
votes
1 answer

Firebase Cloud Messaging with Node.js server

I'm trying to send push notifications with FCM between individual devices using a node.js server and Swift 2.2 (based on Frank van Puffelen's Sending notifications between Android devices with Firebase Database and Cloud Messaging). The notification…