19,394 questions
1
vote
1
answer
45
views
Expo push notification service: ordered guaranteed when using multiple push tokens per message?
I'm using Expo push notification service to send notifications to my users. I'm using the expo-server-sdk-node package.
I saw this in the documentation:
data will contain an array of push tickets in ...
1
vote
2
answers
51
views
Expo React Native: How to play notification sound for 30 seconds on Android?
I am working on a React Native app using Expo (managed workflow), and I need to implement an emergency alert feature.
The requirement is:
When a push notification is received, a sound should play for ...
0
votes
0
answers
76
views
Handling Firebase NotificationOpened on .NET MAUI app on iOS
I am having quite a difficult time with something that I think should be easy, so I don't know what I am missing if anyone knows. I am using the plugin Plugin.FirebasePushNotifications to receive FCM ...
Advice
0
votes
3
replies
73
views
FCM Messaging: Is sending notification and data separately a very bad idea?
I'm currently working on a NET MAUI mobile app using FCM and I have been having trouble figuring out the best solution for ensuring notifications to the user. Our app is mostly a reference/info app, ...
2
votes
0
answers
107
views
Flutter Firebase Notification Action Buttons Not Showing or Working on iOS
I have integrated Firebase notifications in my flutter app then i have to add the actions button in it and I have added the following notification service class for notifications with action buttons ...
0
votes
1
answer
58
views
Flutter: Continuous notification sound + vibration works in foreground but not when app is closed (using flutter_foreground_task)
I am trying to implement a continuous alert sound with vibration for a specific notification type (Order Received).
Requirement
When an order is received:
Play continuous looping sound
Enable ...
0
votes
0
answers
79
views
Badge count is not incrementing in Push Notification using OneSignal in iOS MAUI app
I have developed MAUI app using Visual Studio 2022 v 17.14.16 and .NET 9. I have already developed Android app and it is on Google Play Store.
Now I am developing iOS MAUI app so I have enabled iOS as ...
0
votes
0
answers
104
views
FCM Notifications fail to arrive (on device) when internet is slightly disturbed - Flutter
I am facing an issue using FCM in my flutter application while receiving notifications.
The issue is related to receiving notifications on client end, when the internet is slightly disturbed from the ...
0
votes
0
answers
116
views
How to send daily scheduled notifications. I have instant notificaitons that does work, but scheduling notifications doesn't seem to work
Iäm having issues with sending daily notifications on android. I feel like i have tried everything. The code below is what i use, and then i initialise init in main.dart.
I see no errors, i see ...
2
votes
1
answer
132
views
Flutter FCM FirebaseMessaging.onBackgroundMessage not called on iOS release mode (data-only silent push, capabilities enabled)
In a Flutter chat app using FCM data-only pushes with awesome_notifications for local notifications, FirebaseMessaging.onBackgroundMessage works perfectly on Android (all states) and iOS debug (...
0
votes
1
answer
114
views
How do you get push notifications to work on iOS? [closed]
I built an app in Flutter and implemented push notifications.
The push notification is working well on Android, but not in iOS.
Sometimes, when the app is installed on iOS , it doesn't capture the ...
0
votes
0
answers
81
views
Notification Permission Issue in Device Activity Report Extension (iOS 26)
I'm facing a problem where notification permissions are working fine in the main app, but failing in the Device Activity Report Extension on iOS 2enter image description here6. This issue wasn’t ...
0
votes
0
answers
78
views
Full-screen Activity not showing over lock screen from FCM notification
I want to show a full-screen UI (like an incoming call) when I receive an FCM notification while the phone is locked.
The notification is received, and logs show the Activity runs, but on Android ...
0
votes
0
answers
44
views
Javascript notificationclick is not called on Flutter web app debug build
I want to open a new page on notification click in my Flutter web app. Here is my service worker:
console.log("SW: test.js loaded");
self.addEventListener("push", event => {
console.log("SW: ...
Advice
0
votes
0
replies
67
views
How to show push notifications in Angular 17 when receiving SSE events (even with the browser tab inactive)?
I'm using Angular 17 and Spring Boot 3.3.0, and I have Server-Sent Events (SSE) working on both the backend and frontend.
I need to display a push notification in Angular whenever a new SSE event is ...
0
votes
2
answers
791
views
How to integrate @react-native-firebase/messaging with Expo managed workflow without errors?
I am developing an Expo app and want to implement push notifications with images. Unfortunately, expo-notifications does not support images in push notifications, so I want to use @react-native-...
0
votes
1
answer
76
views
Critical notifications sound not playing OneSignal - ios
I'm having issue that notifications sounds doesn't play, specially for critical notifications i'm using react native.
i already have entitlement and approval from apple
i have the sound file .wav 3 ...
1
vote
0
answers
57
views
Why do some Android devices not send the "Accept" header when requesting images from push notifications?
I'm working in a team that supports the delivery of image files over the web. We've noticed that some requests for images (via image URLs) coming from mobile devices do not contain the Accept header ...
2
votes
1
answer
83
views
How can I achieve instant push notifications to thousands of devices?
I’ve built an app for my clients, and it’s crucial that its notifications are delivered very quickly. During testing, when there were about 5 of us, notifications were instant. But as our user base ...
0
votes
0
answers
73
views
OneSignal push notifications not triggered when sending messages from Flutter app (but test notifications work)
I’m using OneSignal in my Flutter app to send push notifications between a client and admin when they exchange messages (like a support chat).
Here’s what’s happening:
Sending test notifications ...
1
vote
0
answers
93
views
iOS 26 Notification Content Extension extensionContext.open() Fails on Cold Start with LSApplicationWorkspaceErrorDomain Code=115
I'm experiencing a critical regression on iOS 26 with a Notification Content Extension. extensionContext.open(uri) fails to open external URLs with LSApplicationWorkspaceErrorDomain Code=115 under ...
Advice
0
votes
1
replies
216
views
Expo push notifications work in Expo Go but not in EAS build (preview
I’ve set up push notifications in my React Native app using Expo’s Notifications API.
I am using Expo SDK 54.0.10.
Notifications work perfectly in Expo Go, but when I build the app using the command
...
1
vote
0
answers
107
views
Unable to deploy or run Microsoft Push Notifications sample
I'm trying to run the Microsoft Push Notifications sample taken from here client to explore this capability on a Windows app. My setup composed of Azure Notification server, remote app to trigger the ...
0
votes
1
answer
211
views
How to refresh APNs token automatically after device restore without requiring the user to open the app? [closed]
When an iOS device is restored from another device (e.g., Device A → Device B), the old APNs token becomes invalid. The token is only refreshed once the app is opened and ...
1
vote
1
answer
122
views
How to use automatically generated service worker example in Rails 8? [closed]
I realised that Rails 8 generated automatically a service worker file for a new app.
It seems to be useful for web push notifications, and I would like to use push notifications but I do not know how ...
0
votes
0
answers
29
views
Does react-native-onesignal support background processing?
Consider this code (tested on RN 0.71, react-native-onesignal 5.2.8):
const handleForegroundNotification = (event:any) => {
console.log('Foreground notification detail: ',JSON.stringify(event));...
0
votes
1
answer
94
views
WalletPass Notification API Returns 200 but No Push Notification Received
Problem:
When using the WalletPass Notification API to push updates to a pass, the API returns a 200 OK response, indicating success. However, no push notification is actually delivered to the ...
0
votes
0
answers
60
views
Ghost pushing in flutter app with push notifications
I created a flutter app with push notifications enabled, and I'm using firebase FCM HTTP v1 API to send push notifications to my device. Here's my FCM API POST payload.
{
"message": {
&...
2
votes
0
answers
217
views
React Native iOS: Push Notification Listeners Not Triggering Despite Notifications Being Received
I am building a React Native (Bare Workflow) application using @react-native-firebase/messaging.
The core issue is that while iOS system push notifications are being received and displayed correctly (...
1
vote
0
answers
538
views
Cannot receive push notification on iOS Simulator
I'm testing silent push notifications in my app, but when I drag a .apns file into the simulator, it doesn't trigger the didReceiveRemoteNotification callback method.
I've created a minimal ...
4
votes
0
answers
187
views
One Signal OnTap of Notification gives a collapsing effect
Whenever I tap on the notification that I receive , there is a black flash or a collapsing effect , I have tested on real device and on release mode , the bug that I want to fix: -
This is my xml : -
...
1
vote
0
answers
209
views
Image not showing in iOS push notification using Notification Service Extension in React Native with Firebase
I'm working on a React Native project where I’ve implemented a Notification Service Extension (NSE) to display rich push notifications with images on iOS. I'm using Firebase Cloud Messaging (FCM) to ...
0
votes
0
answers
56
views
Having troble with push notification using web-push on production
I’m working on implementing push notifications in my web app. On localhost, everything works perfectly — my notifications show the correct title and body. But once I deploy to production, Chrome only ...
0
votes
0
answers
28
views
Toast messages not displaying during test execution, skipping directly to next screen
During execution, the toast messages are expected to be verified.
In the scan window, the toast message is detected correctly.
But when running the test case, the automation skips this toast ...
-2
votes
1
answer
314
views
WidgetPushHandler methods are never called
Following mainly this apple doc: https://developer.apple.com/documentation/widgetkit/updating-widgets-with-widgetkit-push-notifications
Added WidgetPushHandler struct to my widget via
.pushHandler(...
0
votes
0
answers
126
views
PWA Android & iOS look of push notification
I have implemented push notifications for my PWA with Firebase and a service worker. Only problem I am currently having is the look of the push notifications on both my Android and iPhone.
This is ...
3
votes
1
answer
208
views
CloudKit remote notifications in macOS get clogged up
I have a macOS app which uses CloudKit. I'm trying to deliver remote notifications for database record changes, but I didn't get any notifications through.
I've set everything correctly and according ...
0
votes
0
answers
114
views
Pusher Beams Flutter Notifications Work on Emulator but Not on Real Devices
I'm currently implementing Pusher Beams for background notifications in my Flutter app. Everything works fine on the Android emulator — notifications are received even when the app is in the ...
1
vote
1
answer
127
views
Why do scheduled notifications arrive on the same day?
I'm trying to schedule a notification for several days in advance, including today, but all scheduled notifications are coming today.
This is my code:
import 'package:flutter_local_notifications/...
0
votes
0
answers
133
views
How to send Live Activity push token to server (like Airship or OneSignal) if app hasn't been opened for days?
What I Know So Far:
You must call Activity.request(..., pushType: .token) inside the app to create a Live Activity and receive its push token.
The token can be captured using for await activity....
0
votes
0
answers
76
views
There is no XCFramework found at... when installing onesignal in flutter project
I am using onesignal_flutter: ^5.3.4 and getting error:
Error (Xcode): Multiple commands produce '/myproject/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/OneSignalExtension.framework'
Error (...
0
votes
0
answers
68
views
iOS App not able to get VoIP push notification when device is powered on, After opening App VoIP push receiving
When User restart iOS device, after powering on iOS App is not able to get VoIP push notification. If user opens App, immediate VoIP push receiving.
In Normal (App Kill or Background state) everything ...
0
votes
1
answer
59
views
How to stop Expo Push Notification sound?
I am using Expo Push Notifications in my app to implement a WhatsApp-like calling functionality. I've used a custom sound, and it plays perfectly.
But the problem is when I wanna stop it from the JS ...
0
votes
0
answers
89
views
iOS push notifications are being denied even though the user accepts
I am trying to implement push notifications in my iOS app. I prompt the user at startup and when I hit allow, iOS still silently denies. I know this from console logging.
constructor(
private ...
0
votes
0
answers
109
views
Apple CarPlay push notification action
I have set up push notification in my iOS app that has carplay-driving-tasks entitlement. But I couldn't figure out a way to present an Alert template when the app opens on a user tapping the ...
1
vote
0
answers
150
views
PlatformException LIVE_ACTIVITY_ERROR launching live activity with live_activities Flutter plugin on iOS(com.apple.ActivityKit.ActivityInput error 0.)
I'm developing a Flutter app and trying to implement iOS Live Activities using the live_activities plugin. However, when I attempt to start a Live Activity, I get the following error:
...
0
votes
0
answers
82
views
iOS Physical Device Not Receiving Background Push Notifications with Pusher, While iOS Emulator Does
I'm using React Native with Pusher Beams for push notifications in my app.
Issue:
On my iOS emulator (iPhone 16 Pro Max, iOS 17+), background push notifications are working correctly after I enabled ...
8
votes
1
answer
810
views
Android 16 Live Updates Notifications, canPostPromotedNotifications() always false, (No Status chip, not expanded, collapsible)
I'm currently testing official live updates android feature for notifications in Android 16
https://developer.android.com/develop/ui/views/notifications/live-update
https://www.youtube.com/watch?v=...
0
votes
0
answers
188
views
Firebase push notification not receiving in Testflight build for iOS
In my application, Firebase push notifications are not being received in the TestFlight version of the app, although they work correctly in the debug build. Here are my findings:
When automatic ...
0
votes
0
answers
21
views
Expo React Native - Safari push notifications
we have a react native project using Expo to cover iOS, Android and Web.
We managed to integrate expo-notifications (SDK 52) and support notifications across all Web browsers, except for Safari on ...