com.nokia.example.capturetheflag.notifications.google.GcmBroadcastReceiver.java Source code

Java tutorial

Introduction

Here is the source code for com.nokia.example.capturetheflag.notifications.google.GcmBroadcastReceiver.java

Source

/*
 * Copyright (c) 2014 Microsoft Mobile. All rights reserved.
 * See the license text file provided with this project for more information.
 */

package com.nokia.example.capturetheflag.notifications.google;

import android.app.Activity;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.support.v4.content.WakefulBroadcastReceiver;

/**
 * Google Cloud Messaging {@link BroadcastReceiver}.
 * <p/>
 * Receives GCM messages and passes them to {@link GcmIntentService}.
 */
public class GcmBroadcastReceiver extends WakefulBroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {
        // Explicitly specify that GcmIntentService will handle the intent.
        ComponentName comp = new ComponentName(context.getPackageName(), GcmIntentService.class.getName());

        // Start the service, keeping the device awake while it is launching.
        startWakefulService(context, (intent.setComponent(comp)));
        setResultCode(Activity.RESULT_OK);
    }
}