Example usage for android.support.v4.content WakefulBroadcastReceiver subclass-usage

List of usage examples for android.support.v4.content WakefulBroadcastReceiver subclass-usage

Introduction

In this page you can find the example usage for android.support.v4.content WakefulBroadcastReceiver subclass-usage.

Usage

From source file com.kakao.game.sample.push.GcmBroadcastReceiver.java

/**
 * com.google.android.c2dm.intent.RECEIVE intent  WakefulBroadcastReceiver .
 * BroadcastReceiver?     ?  sleep   ?? ?   .
 * @author MJ
 */
public class GcmBroadcastReceiver extends WakefulBroadcastReceiver {

From source file com.nexters.taigerapp.push.GcmBroadcastReceiver.java

/**
 * com.google.android.c2dm.intent.RECEIVE intent  WakefulBroadcastReceiver .
 * BroadcastReceiver?     ?  sleep   ?? ?   .
 * @author MJ
 */
public class GcmBroadcastReceiver extends WakefulBroadcastReceiver {

From source file com.example.bomb.GcmBroadcastReceiver.java

/**
 * This {@code WakefulBroadcastReceiver} takes care of creating and managing a
 * partial wake lock for your app. It passes off the work of processing the GCM
 * message to an {@code IntentService}, while ensuring that the device does not
 * go back to sleep in the transition. The {@code IntentService} calls
 * {@code GcmBroadcastReceiver.completeWakefulIntent()} when it is ready to

From source file com.example.AllSOS.GcmBroadcastReceiver.java

/**
 * This {@code WakefulBroadcastReceiver} takes care of creating and managing a
 * partial wake lock for your app. It passes off the work of processing the GCM
 * message to an {@code IntentService}, while ensuring that the device does not
 * go back to sleep in the transition. The {@code IntentService} calls
 * {@code GcmBroadcastReceiver.completeWakefulIntent()} when it is ready to

From source file eu.nerdz.app.messenger.GcmBroadcastReceiver.java

public class GcmBroadcastReceiver extends WakefulBroadcastReceiver {

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

        ComponentName component = new ComponentName(context.getPackageName(), GcmIntentService.class.getName());

From source file com.google.android.apps.muzei.SourcePackageChangeReceiver.java

/**
 * Broadcast receiver used to watch for changes to installed packages on the device. This triggers
 * a cleanup of sources (in case one was uninstalled), or a data update request to a source
 * if it was updated (its package was replaced).
 */
public class SourcePackageChangeReceiver extends WakefulBroadcastReceiver {

From source file de.stadtrallye.rallyesoft.receivers.GcmBroadcastReceiver.java

/**
 * Created by Ramon on 30.12.13.
 */
public class GcmBroadcastReceiver extends WakefulBroadcastReceiver {

    @Override

From source file com.google.android.apps.dashclock.ExtensionPackageChangeReceiver.java

/**
 * Broadcast receiver used to watch for changes to installed packages on the device. This triggers
 * a cleanup of extensions (in case one was uninstalled), or a data update request to an extension
 * if it was updated (its package was replaced).
 */
public class ExtensionPackageChangeReceiver extends WakefulBroadcastReceiver {

From source file com.binarywalllabs.sendit.managers.gcm.GcmBroadcastReceiver.java

/**
 * This {@code WakefulBroadcastReceiver} takes care of creating and managing a
 * partial wake lock for your app. It passes off the work of processing the GCM
 * message to an {@code IntentService}, while ensuring that the device does not
 * go back to sleep in the transition. The {@code IntentService} calls
 * {@code GcmBroadcastReceiver.completeWakefulIntent()} when it is ready to

From source file edu.mines.letschat.GcmBroadcastReviever.java

/**
 * This {@code WakefulBroadcastReceiver} takes care of creating and managing a
 * partial wake lock for your app. It passes off the work of processing the GCM
 * message to an {@code IntentService}, while ensuring that the device does not
 * go back to sleep in the transition. The {@code IntentService} calls
 * {@code GcmBroadcastReceiver.completeWakefulIntent()} when it is ready to