dotnetco.de

Setup Xamarin Forms Android App for Push Notifications

Now that we have setup Microsoft Azure, Google Firebase Cloud Messaging and also our new Azure Mobile App, it’s time to update our existing Xamarin Forms App. First we start with the Android part as this is the easy one because it works on both Windows and Mac and push notifications also work fine in the Android Emulator (in opposite to Apples iPhone Simulator because for testing push notifications on iPhone you need iPhone hardware).

This posting is part of a series of 3 postings regarding push notifications with Xamarin Forms:

  1. Configure Azure and Google Firebase for push notifications in Xamarin Forms
  2. Setup server part for Xamarin Forms Push Notifications
  3. Setup Xamarin Forms Android App for Push Notifications (the current posting)

Continue reading…

Setup server part for Xamarin Forms Push Notifications

For sending push notifications to Xamarin Forms app we need to configure Azure and Firebase, update the existing Xamarin Forms App, and we need to have a server part because the initiator of the push message (e.g. another smartphone or a server, wherever the action appeared) will not send directly to Azure. Instead, the message is sent to a server component which will take care about the sending of the push notification to Azure. So current post shows how to setup the server component.

This posting is part of a series of 3 postings regarding push notifications with Xamarin Forms:

  1. Configure Azure and Google Firebase for push notifications in Xamarin Forms
  2. Setup server part for Xamarin Forms Push Notifications (the current posting)
  3. Setup Xamarin Forms Android App for Push Notifications

Continue reading…

Configure Azure and Google Firebase for push notifications in Xamarin Forms

One of the key features of modern smartphones (iPhone, Android, Windows Phone etc.) are push notifications. Unfortunately it’s not as easy as e.g. email. Therefore I’ve split my posting into 3 postings:

  1. Configure Azure and Google Firebase for push notifications in Xamarin Forms (the current posting)
  2. Setup server part for Xamarin Forms Push Notifications
  3. Setup Xamarin Forms Android App for Push Notifications

Continue reading…