Use this tag for Silent push notifications to mobile
Background update notifications improve the user experience by giving you a way to wake up your app periodically so that it can refresh its data in the background.
Is there a way to send a silent APNS using google's firebase?
It seems that if the app is in the background it will always show a notification to the user.
Thanks?
I was hoping that the iOS11 release will fix the silent push issue, which was in the latest betas and GM version of iOS.
Currently I'm struggling to understand, why I don't receive any silent push messages, which should actually wake up my app to…
I am trying to implement Silent Push Notification in my app for periodically i.e. once in a day upload data to server. But on iOS 11.2.6 it's consistently failing to call the delegate method
-(void) application:(UIApplication *)application…
I don't know if it is a bug or feature by Apple. In the documentation:
system does not automatically launch your app if the user has force-quit it. In that situation, the user must relaunch your app or restart the device before the system attempts…
APNS Content available push not received in iOS 15 device when app builds with Xcode 13.0,iOS 15 SDK.
Push payload data with content available:1 not working
{"aps":{"content-available":1},"update":"2|1"}
but normal notification message push…
I'm developing a VoIP app using PushKit and CallKit. I'm aware that similar questions have been asked quite often on different forums but unfortunately have never really been answered. Also most of these posts are from around 2015 so i assume…
So, I found this answer here by #CommonsWare about allowing an app to install apps silently to the phone like Google Play does. There, it is mentioned that the app should be either signed with the firmware-signing certificate or so, or add the app…
From what I've learned, silent push notifications do not call application:didReceiveRemoteNotification:fetchCompletionHandler: when the user killed the app via multitasking UI. But when looking at WhatsApps behavior, I do not understand how they…
I want to send silent notifications to my tvOS application. Does this require asking the user for notification permissions? Or is it enough to just register for remote notifications and enable the matching app capabilities in…
Problem
Sending silent notifications for release app version shows next log:
SpringBoard[48] : High Priority Push: [Bundle ID] - BAR Disabled
Any idea? BAR Disabled??
Looks like when "BAR Disabled" log appears, the method…
I am trying to get my React Native app open when a Silent Push Notifiaction is received. I am receiving the Silent Push Notification and the app is also opening when the notification is received. This is how I am getting the notification.
On ce i…
I have a supervised device with few apps installed on it. I change the device into Kiosk mode to run the Web browser App.
Now when the device is in the kiosk mode I push a silent notification to another app on the device using following payload:
{
…
I seem to have run into a regression in iOS11. I have an app that receives silent push notifications (push notifications with "content-available": 1) every hour in order to refresh itself. It has been working for years now with no problems.
However,…
Reading from WWDC 2015 Session 720 it says:
Silent notifications are enabled by default.
The user does not need to give permission to your app to use them. You can start using them without asking the user for permission
My question is:
How do…
Yes there are also similar questions available in stack, So far, I didn't found any proper concurrent answer from those questions.
How can i download any data or call web-api, When i receive silent push notifications ?
My Code is as below..
-…