Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiple Notification Service Extension in one app

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

like image 535
user1169079 Avatar asked Dec 29 '16 10:12

user1169079


People also ask

What is remote notification extension?

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.

What is notification extension in iOS?

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.

Do I require distribution provisioning profile for notification service extension for iOS?

Yes you have to use separate provisioning profile for Notification Service Extension and Notification Content Extension.


Video Answer


1 Answers

NotificationServiceExtension

The docs doesn't say anything about that. In my tests it didn't work. All notifications were getting processed through a single NotificationServiceExtension.

NotificationContentExtension

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.

Customizing the Appearance of Notifications docs

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:

enter image description here

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:

  • A target that its bundleID is prefixed with as the apns-topic
  • An 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:

enter image description here


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.

like image 69
mfaani Avatar answered Sep 19 '22 19:09

mfaani