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

How to send notification to all devices that installed my app using Firebase and PHP?

I'm making an existing application which includes notification when there is new content. Notification is sent to all the gadgets that have installed the application. How to do it using FCM and PHP?
0
votes
2 answers

Right way to capture push notifications when the application is open in Android

This is the first time I am integrating notifications into my application. I am using Firebase. Setup was extremely simple and I am able to view the notification in the tray. So, when the application is open, and if it receives a notification. I…
0
votes
1 answer

Why debug key works in Firebase but not in Google Maps?

It has been the first time I uploaded an app with Google Maps to the Play Store, so I made the mistake of not adding a release SHA1 key to the Google Dev Console. The map was not working until I changed the SHA1 key to a release one. I'm also using…
0
votes
3 answers

FCM Notification with payload in device's system tray not getting passed to App

Android app is running in the background state. Created a notification message in the Firebase Console with payload in the Advanced options. After receiving the notification and shown on the device's system tray, clicking on the notification just…
Wilson
  • 11
  • 2
0
votes
0 answers

I can't see FCM notification messages report

We send notification message via HTTP API and I can see notification_receive report with Firebase console. Then I follow this guide. Linked our Firebase account with our Google Developer account. I can see the registration data, but no push messages…
0
votes
1 answer

No sound when message sent from firebase console when app is closed

My code is ditto same as provided by fcm docs I am recieving notification when app is closed without using intent extras or any php code. when app is in foreground onMessageRecieved() method gets invoked so i get default sound but when app is in…
0
votes
1 answer

Firebase topic sync succeeded but not shown in FCM Console

I have successfully implemented Push Notification in Xamarin.Android native App in VS2015 using Firebase Cloud Messaging from console. I tried to subscribe topic from Android App and would like to send push notification from console to all devices…
0
votes
1 answer

Implementing Android Notifications Programmatically in Firebase

Sending notifications in android without a backend, we have to write these lines of code in android studio: NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); Intent intentViewPost = new…
Nzadibe
  • 598
  • 2
  • 11
  • 28
0
votes
2 answers

Why I'm not able to handle received push notifications in iOS 10?

I already imported import UserNotifications and connected delegate: UNUserNotificationCenterDelegate and set delegates as self: UNUserNotificationCenter.currentNotificationCenter().delegate = self FIRMessaging.messaging().remoteMessageDelegate =…
0
votes
0 answers

Specific activity not showing after getting specific Firebase notifications in signed APK

I'm not able to open specific activities via specific Notification in my signed APK. It works perfectly when we run app from PC in Android Studio. This is what I can achieve on Android Studio: Send the push notification via Firebase Console, then if…
0
votes
0 answers

Notification not received sometimes

I am using Firebase Notifications on my project. The problem is when I'm sending the notification through my HP, the notification is sometimes not received. Can somebody explain to me why does this happen?
0
votes
3 answers

I'm not able to open specified activity via notification

I'm using Firebase notifications to send notifications in my Android App. I want to achieve following: When user clicks notification, activity of my choice should open and activity should perform some actions automatically which I'll define like…
0
votes
1 answer

How to add Firebase notification in old Google Play Services library map based project

I am working on old project which is purely based on maps and old google play library 3.2.65 version and now I want to add Firebase notification on the same project unable to resolve Google Play library based conflict. Error:Execution failed for…
0
votes
1 answer

Why PendingIntent opens the launcher activity of the app rather than specific activity?

I am using firebase to send notification. It will open ResultActivity when user click on notification. It is working fine when app is in foreground. But when app is in background, it open the HomeActivity (which is the launcher activity of the app)…
0
votes
1 answer

Open a custom Intent when click on notification for Firebase notification payload

When click on a notification it should be open a custom Intent for Firebase notification payload. click_action returns null when set any Intent name So, is it possible to set an Intent on click of a notification.