Reputation: 115
I need to integrate push notification service in my app. I am using azure. In their documentation for connecting app to notification hub "WindowsAzure.Messaging.Managed" package is used but its not present in windows phone 8.1. What is the alternative for this.
I have used following code to get channel
PushNotificationChannel channel = await PushNotificationChannelManager.CreatePushNotificationChannelForApplicationAsync();
How can I register this channel with hub and then receive notification.
Upvotes: 0
Views: 256
Reputation: 3568
Nuget Package WindowsAzure.Messaging.Managed is available for Windows Phone 8.1 Store Apps as well as Windows Phone 8.1 Silverlight Apps.
You have to add the Package to your project via nuget.
Upvotes: 0