Android Open Source - AndroidPushNotifications Gcm Broadcast Receiver






From Project

Back to project page AndroidPushNotifications.

License

The source code is released under:

Apache License

If you think the Android project AndroidPushNotifications listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.eventbooking.android.gcm;
//from  ww w .  j  av  a 2  s . c om
import android.app.Activity;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.support.v4.content.WakefulBroadcastReceiver;

/**
 * This class receives the GCM message and passes it to GcmMessageHandler.
 */
public class GcmBroadcastReceiver extends WakefulBroadcastReceiver {
    @Override public void onReceive(Context context, Intent intent) {
        // Explicitly specify that GcmMessageHandler will handle the intent.
        ComponentName componentName = new ComponentName(context.getPackageName(), GcmMessageHandler.class.getName());

        // Start the service, keeping the device awake while it is launching.
        startWakefulService(context, (intent.setComponent(componentName)));

        setResultCode(Activity.RESULT_OK);
    }
}




Java Source Code List

com.eventbooking.android.gcm.ApplicationTest.java
com.eventbooking.android.gcm.GcmBroadcastReceiver.java
com.eventbooking.android.gcm.GcmMessageHandler.java
com.eventbooking.android.gcm.MainActivity.java