Is it possible to add Multiple Notification Service Extension in one app?If Yes, then how to recognize which one will be used and how?
Basically there are two service providers for my app and both of them have their own payload for notification service extension so is there any way by which I can add two different notification service extension and according to value in payload of serviceProvider == "1" I can tell app to run the Extension of serviceProvider 1
Overview. A UNNotificationServiceExtension object provides the entry point for a notification service app extension. This object lets you customize the content of a remote notification before the system delivers it to the user.
Notification Service Extension was introduced from iOS 10 using XCode 8 or later. This extension can modify the contents of notifications before they are displayed on the operating system. Notification Service Extension also can be used to download content.
Yes you have to use separate provisioning profile for Notification Service Extension and Notification Content Extension.
The docs doesn't say anything about that. In my tests it didn't work. All notifications were getting processed through a single NotificationServiceExtension
.
For NotificationContentExtension
the docs say:
You may add more than one notification content app extension to your project, but each one must support a unique set of notification categories. You specify the categories for your app extension in its Info.plist file, as described in Declare the Supported Notification Types.
I verified ☝️ and it worked! FWIW you can use a single a Notification Content Extension for multiple categories.
UNNotificationExtensionCategory (Required)
A string or an array of strings. Each string contains the identifier of a category declared by the app using the UNNotificationCategory class.
What's also worth mentioning is that the default plist settings of a NotificationServiceExtension
looks like this:
It's not associating itself with any given category. I tried adding the NSExtensionAttributes
, along with a UNNotificationCategoryExtension
key, value. But even though it compiled, it didn't work!. I think the way Apple decides how to use a Notification Service Extension is based off these two fields:
apns-topic
NSExtensionPointIdentifer
field which must always be set to com.apple.usernotifications.service
. The value of this is different for Today's extension or content notification extension, etc.So if you have two service extensions then the system has no way of deciding which one it should show
However the default plist settings of a NotificationContentExtension
does have UNNotificationCategoryExtension
key, value included:
Also thinking about this more, if an app has 5 different categories and has a service extension for each each of them and receives them all at once, then it would fire up 5 different processes (think of 5 parallel didFinishLaunchingWithOptions
callbacks. One for each category and process) and that's bad for the OS.
While not certain, the documentation on Signal's NotificationService class supports this theory.
// Note that the NSE does *not* always spawn a new process to // handle a new notification and will also try and process notifications // in parallel. `didReceive` could be called twice for the same process, // but will always be called on different threads. To deal with this we // ensure that we only do setup *once* per process and we dispatch to // the main queue to make sure the calls to the message fetcher job // run serially.
The same isn't true for NotificationContentExtension
. It can't process 5 contentExtensions at once. Because it's a UI featured which is gated by the main thread.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With