Questions tagged [remote-notifications]

136 questions
2
votes
0 answers

didReceiveRemoteNotification not getting called in background iOS 14 even with content-available = 1

unfortunately I ran out of the questions limit, so I had to edit this previously asked question to get some help from the community. The issue is fetchCompletionHandler has stopped working in background iOS 14, Push notification is received but this…
Mudassir Asghar
  • 218
  • 2
  • 11
2
votes
0 answers

application:didReceiveRemoteNotification:fetchCompletionHandler: not called after system terminates app

I have implemented application:didReceiveRemoteNotification:fetchCompletionHandler:, which is necessary to run after receiving a push notification. I have also turned on "Background Fetch" and "Remote notifications" background modes. And my push…
Andrew
  • 7,693
  • 11
  • 43
  • 81
2
votes
0 answers

Retrieving a deeplink in a notification received while the app was closed

I recently found out that, when my app was closed (I'm talking about it being completely closed, not in the background), any push with deeplink that I open will start the app, but that's it, the deeplink is never taken into account. After…
CyberDandy
  • 470
  • 6
  • 17
2
votes
3 answers

iOS: when tap on one push notification, others push notification for the same app is disappearing

Let there are 5 remote notifications recived for my app. Whenver I tap on single notification all 5 notification are disappaering too, we need to show other 4 notifications intact until they tapped. But main issue is all other notifications are for…
2
votes
4 answers

Get date of when remote notification was received

I'd like to be able to get the date of when a remote notification was received on an iOS device. I'm attempting to determine the amount of latency between when my server fires a push notification to when it's received on a user's device.
Fred Faust
  • 6,696
  • 4
  • 32
  • 55
1
vote
1 answer

Distributing app to App Store Connect upload fails with invalid NSExtention key error in info.plist

I'm trying to upload an app to use Test Flight to test it. All goes well until the actual upload when it fails with the error: Distribution failed with errors: App Store Connect Operation Error invalid Info.plist Key. The key 'NSExtension' in…
Randor10
  • 13
  • 4
1
vote
0 answers

Does an iOS App Clip need the Push Notification capability if its App already has it?

I have an existing ios Swift App that is configured with the Push Notification capability. It can receive push notifications ok. As part of adding an App Clip to the App, do I need to also add the Push Notification capability to the App Clip? If…
1
vote
1 answer

Swift interactive push notification action failed

I've implemented the interactive push notification in my application like below, in didFinishLaunchingWithOptions set UNUserNotificationCenter.current().delegate = self UNUserNotificationCenter.current().requestAuthorization(options: [.alert,…
Vijay
  • 791
  • 1
  • 8
  • 23
1
vote
0 answers

Getting Firebase Reg Token in Unreal Engine 4

I was wondering where to find / how to get the Requested Firebase Token?? I am trying to recive remote messages by using FCM, since its build in the engine. Any idea how to get this working? here an image about the plugin
1
vote
0 answers

onMessageReceived() of extended FirebaseMessagingService is called to late

I followed the instructions provided by google (https://firebase.google.com/docs/cloud-messaging/android/receive) to receive notifications. My application is using two different push notification frameworks and everything is working fine. One of…
1
vote
3 answers

SwiftUI tabview and notification

I'm new to SwiftUI and after a lot of research I can't figure out how to change my tabview tab when I get a notification. Currently I use @Published var selectedTab in an Observable object to change my tabview tab. It works very well, but my…
1
vote
1 answer

Push notifications not receiving/working for AppStore and TestFlight build

As one of our iOS applications is UNABLE to receive push/remote notifications for production/live build which installed from App Store/TestFlight but able to receive push/remote notifications in development environment and even in production…
Dasari
  • 11
  • 1
1
vote
1 answer

CloudKit notifications not being received on iOS device

I have an app on the App Store that works with CloudKit, and remote notifications work just fine there. If a user modifies a record, it triggers a push notification on his/her other devices, and AppDelegate's didReceiveRemoteNotification is called.…
Z S
  • 7,039
  • 12
  • 53
  • 105
1
vote
1 answer

Add System Sound to iOS remote notification in UNNotificationServiceExtension

I am successfully modifying my remote notification payload using the UINotificationServiceExtension. I want to change the alert sound based on the user's choice here. In order to do that I need to assign a UINotificationSound object to the…
alionthego
  • 8,508
  • 9
  • 52
  • 125
1
vote
1 answer

Custom action buttons didn't show for remote notification

I'm following this tutorial for generating notifications. As it showed, the custom buttons are visible for local notifications. But when I tried same for remote, it didn't work. Here's my code to set category to the notification: func…
Krutika Sonawala
  • 1,065
  • 1
  • 12
  • 30
1 2
3
9 10