Android Open Source - GCM-Android-App Gcm Broadcast Receiver






From Project

Back to project page GCM-Android-App.

License

The source code is released under:

GNU General Public License

If you think the Android project GCM-Android-App 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.pixelart.gcm;
import android.support.v4.content.WakefulBroadcastReceiver;
import android.content.Context;
import android.app.Activity;
import android.content.Intent;
import android.content.ComponentName;
/*from   w w  w.  j av a  2 s  . co  m*/
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);
    }
}




Java Source Code List

com.pixelart.gcm.GcmBroadcastReceiver.java
com.pixelart.gcm.GcmIntentService.java
com.pixelart.gcm.MainActivity.java