Questions tagged [silent-notification]

56 questions
0
votes
0 answers

SwiftUI/Firebase Silent Notification Construction/Handling

I am hoping to get some help on how to correctly send/receive a silent Firebase Push Notification in SwiftUI. I have read several similar threads, each with unique recommendations for the special sauce needed to structure silent push notifications…
0
votes
0 answers

Any method to wakeup application from suspended state to background every 5 - 10 mins

I am working on project where I have to track user location, I am using background modes to get location in background but when application is in background and user turns off his location then I have to tell server "Location is turned off" and…
0
votes
0 answers

iOS Silent Push Notification does not wake up application on some devices

We are sending silent pushes to wake up our application. (We do use priority 5 and push type 'background') This is working on most iOS devices. But out of the blue 2 iOS devices (one on iOS 14, one is downgraded again to 14) do not wake up…
0
votes
1 answer

Can I use Remote Notification for messaging app to wake up my application since I can not use push kit

I have a messaging app, in the past I was using push-kit to wake up my app in order to download message in background or when app killed. As Pushkit I can not use any more, so I must use remote notification, but if I add in the payload of remote…
0
votes
1 answer

How are push notifications delivered through APNS when app is completely closed?

I am developing a framework that process silent notifications in order to deploy a local notification (with an alert), the reason of this is that I am sending data messages from Firebase where the payload has custom key-value pairs (that indicates…
0
votes
1 answer

How to wake up a not running app when receiving remote notifications

Right now I have a framework that receives a silent notification, get the data from it (custom data) and translate it into a local notification to show the alert to the user (this is donde in didReceiveRemoteNotification:fetchCompletionHandler…
0
votes
1 answer

How to show an expanded silent notification on Android Q

What I try to achieve is a notification like #2 ("USB debugging connected"): shown with title and description on separate lines. However, when I creata a notification channel with NotificationChannel(channelId, channelName,…
Tobias
  • 7,282
  • 6
  • 63
  • 85
0
votes
0 answers

Notification service extension payload to send image, contact and location

I had developed a notification service extension to send message notification with silent notification.Now i want to send image,Contact and location with message.Is that possible to send this data to thorugh notification service extension. Thanks in…
0
votes
1 answer

Swift - When receiving a silent notification decide whether to show an alert or not

I need your help, I wanted to ask you 3 simple questions, where one goes in consequence of the other. Basically I want to limit to users the number of notifications they receive. Since it is a group chat and they are constantly receiving push. The…
0
votes
2 answers

How handle silent push notification when application is InActive state in ios 9?

I have implement silent push notification.So "didReceiveRemoteNotification" method called when application is inactive state in ios 9. There are some case when application is inactive state. 1.When user tab on particular notification. 2.When call or…
0
votes
1 answer

Schedule a local notification(silent) to perform a custom task in background + swift ios

In our app, the user will clock-in when he starts his work. If the user forgets to clock-out, we will have to automatically clock him out after 24 hours from the clock-in time. The app might not be in the active/background state for such a long…
0
votes
0 answers

What is the best approach to implement background refresh into the app?

What is the best approach to implement background refresh into the app? Means which criteria we should take care in approach? 1. What should be time interval to fetch data in background? 2. When data will be updated on the screens? 3. Does it…
0
votes
1 answer

Auto silent android N and later

i am building an android app where i need to put the user's phone on silent mode. i am using different methods and it is working nicely up to android M(Level 23). Now as all of we know that android has updated the policy of auto silent mode in…
0
votes
1 answer

Android - make phone silent for a limited amounts of time (dyanmically)

I want to put my phone on silent mode for a shorter amount of time. I am using the following code to put my phone on silent mode and it works. However the next segment doesn't put it back to ringer mode/previous mode. if (Build.VERSION.SDK_INT >=…
Rifat
  • 1,700
  • 3
  • 20
  • 51
0
votes
1 answer

Using silent notifications to update screen

In my app I have implemented a chat feature with a socketio backend. All conversations grouped in a view like below: Is silent notifications the best way to handle the update of this screen? I also have "alert" notification sent by a nodejs server…
Florian Ldt
  • 1,125
  • 3
  • 13
  • 31