Click here to Skip to main content
15,886,110 members
Articles / Desktop Programming / Universal Windows Platform

Your UWP Push Notifications Are Now Toast

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
17 Nov 2015CPOL2 min read 7.8K  
Your UWP Push Notifications are now Toast

I recently pushed an update to the UWP I’ve published to the store at work. After installing the app on my 10581 Windows 10 device and using it all weekend, I was dismayed to see when I received a push notification the app didn’t do what it was supposed to do.

I dove in.

When using Template10, a sequence of events kicks off when your app is launched no matter what the trigger:

  1. OnLaunched is fired and intercepted by Template10’s Bootstrapper in OnLaunchedAsync() and handles the launched event of the app, and throws this down into an internal method (InternalLaunchAsync).
  2. InternalLaunch initializes the frame (if the app wasn’t previously running) and does some other work.
  3. Frame Init triggers OnInitializedAsync which you may/may not have overridden to do some Shell work, etc.
  4. OnActivated is fired and intercepted by Template10’s Bootstrapper in OnActivatedAsync() and will re-initialize the frame if it’s needed or kick off OnStartAsync which is intended to be *the* only method you need to handle to react to your app being fired up; you’re required to override this as part of using Template10’s Bootstrapper.cs as the base for your Application class.
  5. In OnStartAsync(), it’s advised to run Bootstrapper’s DetermineStartCause(args) to determine how your app was launched; Toast, Tile, other?

Let’s have a look at DetermineStartCause(args):

C#
 1: public static AdditionalKinds DetermineStartCause(IActivatedEventArgs args)
 2: {
 3:     if (args is ToastNotificationActivatedEventArgs)
 4:         return AdditionalKinds.Toast;
 5:     var e = args as ILaunchActivatedEventArgs;
 6:     if (e?.TileId == DefaultTileID && string.IsNullOrEmpty(e?.Arguments))
 7:         return AdditionalKinds.Primary;
 8:     else if (e?.TileId != null && e?.TileId != DefaultTileID)
 9:         return AdditionalKinds.SecondaryTile;
10:     else
11:         return AdditionalKinds.Other;
12: }

It’s pretty simple. At each step of the launch sequence, the args for how the app was executed are passed around. In here, we attempt to figure out the exact way it was launched based on the args’ concrete type or other properties.

Here is where Microsoft just broke your UWP and you didn’t even know. If you were using the non-adaptive toast templates, your args are no longer of type ToastNotificationActivatedEventArgs and instead are just plain old LaunchActivatedEventArgs. Furthermore, the .Kind property isn’t set to ToastNotification anymore either. I have noticed this in Windows 10 10581+ (mobile or desktop).

Turns out, we had some warning of this, to give Microsoft a small leg to stand on as on this page back in July they wrote:

2015-11-16_1301

welp, it’s done!

If you want your UWP to properly handle toast notifications (y’know, like it used to), you must now be using adaptive templates when you push them.

Why was I using legacy templates? I found out early in our development cycle that the adaptive Tile templates didn’t do the peek image/text format correctly on mobile (no, I haven’t tested it since), so I just scrapped using Adaptive altogether. Furthermore, we’re using Urban Airship to handle pushing our notifications across many platforms, and they’ve got zero mention of support adaptive templates so I didn’t want to push the envelope.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
I'm a Sr. Software Engineer in the Seattle area primarily focused on serverless technologies in the cloud. In my free time I enjoy hiking & other adventures with my family around the Puget Sound and the country! You can find out more about me at my homepage: http://bc3.tech/brandonh

Comments and Discussions

 
-- There are no messages in this forum --