Android Open Source - GCMHelloWorld Gcm Broadcast Receiver






From Project

Back to project page GCMHelloWorld.

License

The source code is released under:

Created by Javier Montaner (twitter: @tumaku_) during PIWEEK of kaleidos http://kaleidos.net/ (July 2014) Built on a previous project (https://github.com/jmgjmg/MSMBle) developed at Makespace Madri...

If you think the Android project GCMHelloWorld 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.tumaku.gcmhelloworld;
//from  ww  w.j  a  v a 2  s.  c o m
import android.app.Activity;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.support.v4.content.WakefulBroadcastReceiver;

public class GcmBroadcastReceiver extends WakefulBroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {

        // Explicitly specify that GcmMessageHandler will handle the intent.
        ComponentName comp = new ComponentName(context.getPackageName(),
                GcmMessageHandler.class.getName());

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




Java Source Code List

com.tumaku.gcmhelloworld.ControlLightActivity.java
com.tumaku.gcmhelloworld.GcmBroadcastReceiver.java
com.tumaku.gcmhelloworld.GcmMessageHandler.java
com.tumaku.gcmhelloworld.MainActivity.java
com.tumaku.gcmhelloworld.TumakuBLEService.java