Using Google Cloud Messaging (GCM) on Android and iOS in Xamarin

Assuming you've already got a Xamarin Forms project set up and ready to go, we'll begin with installing the Xamarin GCM service into your app and then talk about adding the code to interface with it.

Installing GCM:

You'll want to begin by right clicking the Portable or Shared project within the solution and clicking 'Manage NuGet Packages'. Once open, you'll need to click 'Browse' at the top left and then search for 'Xamarin.GooglePlayServices.Gcm' and install the package. Note: Make sure you've got the correct package, the 'Author' label displays as 'Xamarin Inc'. You'll want to repeat this process for both the Android and iOS projects in the solution.

Before you link GCM to your app, you'll need to make Google aware of it by going to the Google Developer Console and creating your app, then adding GCM to it. You might find this page useful for helping you create it: http://dev.tapjoy.com/faq/how-to-find-sender-id-and-api-key-for-gcm/

Android:

Within your 'AndroidManifest.xml' file add the following permissions to enable your app to receive notifications:

<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="{MYAPPNAMESPACE}.permission.C2D_MESSAGE" />

Make sure to add them above <application...>...</application>. And replace {MYAPPNAMESPACE} with the root namespace that your app runs in.

Then add the following within the application tags:

<receiver android:name="com.google.android.gms.gcm.GcmReceiver" android:exported="true" android:permission="com.google.android.c2dm.permission.SEND">
  <intent-filter>
    <action android:name="com.google.android.c2dm.intent.RECEIVE" />
    <action android:name="com.google.android.c2dm.intent.REGISTRATION" />
    <category android:name="bifa.droid" />
  </intent-filter>
</receiver>

This tells the Android phone to hook in a receiver to look for information sent by GCM, you'll want to create a file called GCMListenerService.cs and add it to it.

namespace {MYAPPNAMESPACE}
{
    [Service (Exported = false), IntentFilter (new [] { "com.google.android.c2dm.intent.RECEIVE" })]
    public class MyGcmListenerService : GcmListenerService
    {
        public override void OnMessageReceived (string from, Bundle data)
        {
            string id = data.GetString ("id");
            string title = data.GetString ("title");
            string message = data.GetString ("message");

            Log.Debug ("MyGcmListenerService", "From:    " + from);
            Log.Debug ("MyGcmListenerService", "Message: " + message);

            SendNotification (id, title, message);
        }

        void SendNotification (string id, string title, string message)
        {

                var intent = new Intent (this, typeof(MainActivity));
                intent.AddFlags (ActivityFlags.ClearTop);
                intent.PutExtra("id", int.Parse(id));
                var pendingIntent = PendingIntent.GetActivity (this, 0, intent, PendingIntentFlags.OneShot);

                var notificationBuilder = new Notification.Builder(this)
                    .SetSmallIcon (Resource.Drawable.icon)
                    .SetVibrate(new long[] { 0, 200 })
                    .SetContentTitle (title)
                    .SetContentText (message)
                    .SetAutoCancel (true)
                    .SetContentIntent (pendingIntent);

                var notificationManager = (NotificationManager)GetSystemService(Context.NotificationService);
                notificationManager.Notify (0, notificationBuilder.Build());
        }
    }
}

 

iOS:

 


Published at

Tags: Xamarin,Android,iOS

Luke Alderton

Comments

Zane Campbell
Why does this article just end? It is definitely not completed. Nothing for iOS.
06/01/2017
Share with
Tags
Latest Comments
By Mark Gentry on Windows Server 2019 - Change product key does nothing
20 Aug 2021, 03:30 AM
By Cathy on In-Place Upgrade for a Windows Server domain controller
31 Jul 2021, 18:28 PM
By Mr. Greymatter on Raspberry Pi - Running Java app on Raspbian
16 Feb 2021, 07:35 AM
By Mikko Seittenranta on Xamarin Forms multiple instances of same app open
16 Feb 2021, 04:34 AM
By Andrew on Auto/Custom height on Xamarin Forms WebView for Android and iOS
22 Jan 2021, 22:15 PM
By Nick on Raspberry Pi - Running Java app on Raspbian
14 Oct 2020, 19:37 PM
By Ivan on Fixed: Value cannot be null Parameter Name: source
15 Sep 2020, 19:47 PM
By Anand on Raspberry Pi - Bluetooth using Bluecove on Raspbian
7 Sep 2020, 16:53 PM
Categories
App Development
Event
Game Development
Mapping
Modelling
Programming
Review
Robotics
Tutorial
Web Development