Android Open Source - uNotify Gcm Broadcast Receiver






From Project

Back to project page uNotify.

License

The source code is released under:

Apache License

If you think the Android project uNotify 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 net.greghaynes.unotify;
/* w  w  w  .  ja v a2 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;

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

net.greghaynes.unotify.GcmBroadcastReceiver.java
net.greghaynes.unotify.GcmIntentService.java
net.greghaynes.unotify.MainActivity.java
net.greghaynes.unotify.SettingsActivity.java
net.greghaynes.unotify.SettingsFragment.java