Questions tagged [silent-notification]
56 questions
2
votes
2 answers
Silent push notifications in iOS 11 ignored.
if I try to send a push notification silent (no badge/sound/alert) and just content-available, as per specs for silent notifications, on iOS 11, the notification is ignored and not forwarded to the app.
This is the notification
{
"aps" : {
…

zontar
- 485
- 7
- 18
2
votes
0 answers
How do silent notification behave once phone got Power off & On
I have a application which tries to grab location of user using silent notification at certain situations. I am able to send silent notification to the phones and able to run the background fetch and get the location back to web-service.
Comparing…

Karen
- 169
- 1
- 16
2
votes
1 answer
Silent push notification (APNS) can not received
I have set up the silent push notification for my app:
1. I configured the push notification from all places, i.e., XCode, Apple Developer portal with proper certificate
2. I enabled background capability
3. I included "content-available" in the…

Trombe
- 197
- 3
- 8
1
vote
0 answers
How can I check if my app "silent notification" is not being displayed in Android?
In android there is an option to "Hide silent notifications in status bar". It is in Android settings >> Notifications
If the user has that option activated, my app is not able to display notifications (beacuse my app only displays silent…

Ton
- 9,235
- 15
- 59
- 103
1
vote
0 answers
For application(_:didReceiveRemoteNotification:fetchCompletionHandler:) how to implement custom completionHandler?
Hi I'm new to Swift programming. So I have the following function:
func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping…

M Rahman
- 31
- 5
1
vote
1 answer
Silent Push Notifications in iOS 14 and 15
in my app I have implemented silent notifications with Firebase Cloud Messaging, I receive message and handle them with:
public func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any],…

Empiric10
- 25
- 5
1
vote
1 answer
Do FCM silent push notifications (Background push) in iOS work as defined by Apple?
I am planning to implement silent notifications via FCM in my iOS app. I found many articles and SO posts describing how to achieve this. But my question stems from the fact that I found this code snippet in the FCM documentation. Please note the…

humblePilgrim
- 1,818
- 4
- 25
- 47
1
vote
0 answers
Usage (best/good practice) patterns for Silent Notification (in iOS and Android) and it usages for significant events
There are a number of questions that I noticed in this space and it gives me a good idea
of the notification space.
I found this Q&A informative and want to thank the folks for the discussion in that thread.
However there are still a few questions…

Manglu
- 10,744
- 12
- 44
- 57
1
vote
1 answer
How to received messages without Notifications even background fetch is turn off
Anyone know about how to achieve received messages in terminated mode without showing any notification and turn off background fetch in settings ?
In whatsapp application if I mute any conversation and from settings turn off background app refresh ,…

Holo Dev
- 11
- 1
1
vote
1 answer
Are silent notifications received with background notifications turned off, while application is running in iOS?
I just took a look at Is Silent Remote Notifications possible if user has disabled push for the app?.
It basically says the Silent Notifications disregard notification settings for user. It then says:
Users still have the ability to switch off…

Dave Stein
- 8,653
- 13
- 56
- 104
1
vote
1 answer
Silent notification on background mode does not work iOS
I am using One Signal to receive notifications. Also Native Swift 4.2 on Xcode.
I need to send silent notifications to my app, just to update data. I don't want to bother the user.
Ok, I can do that on foreground. But I cannot on background.
Some of…

asr
- 139
- 3
- 11
1
vote
2 answers
Error in Silent notification display banner in Objective c iOS 11
I am implementing Silent notification in Objective c Code in ios 11. Using FCM Notification by adding this method.
What is Silent Push Notification? When does the device receive it?
- (void)application:(UIApplication *)application…

Shahbaz Akram
- 1,598
- 3
- 28
- 45
1
vote
1 answer
Silent iCloud changed notifications not received in background
My app uses a public iCloud database that is synchronised using push notifications.
The subscription to iCloud notifications uses the following notificationInfo:
let notificationInfo = CKNotificationInfo()
notificationInfo.alertBody = nil
…

Reinhard Männer
- 14,022
- 5
- 54
- 116
0
votes
0 answers
Android: How to open app on silent push notification
I'm working on a patient-doctor call app using firebase notification.
When patient clicks on call button, the doctor should receive notification and the app should come in front whether the screen was off or app was in background.
Right now, when we…

Ashutosh
- 4,371
- 10
- 59
- 105
0
votes
0 answers
How to Play a sound when a critical notification received in FirebaseMessagingService
I developing an application that receives a push notification when there is an emergency alert and needs to play a sound even when the device is in silent mode.
the sound aslo need to be custom.
I tried all kinds of ways without any success.
How do…

Hofit.Shalom
- 36
- 6