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.drinviewer.droiddrinviewer.DrinViewerBroadcastReceiver.java

/**
 * BroadcastReceiver class for the following actions:
 * - WifiManager.NETWORK_STATE_CHANGED_ACTION
 * - ConnectivityManager.CONNECTIVITY_ACTION
 * - broadcast_startdiscovery      (DrinViewer custom)
 * - broadcast_cleanhostcollection (DrinViewer custom)

From source file com.gamethrive.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.onesignal.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 br.com.imovelhunter.imovelhunterwebmobile.GcmBroadcastReceiver.java

public class GcmBroadcastReceiver extends WakefulBroadcastReceiver {

    private static EscutadorDeMensagem escutadorDeMensagem;

    private static NotificationActivity.OnRecebeuNotificacao onRecebeuNotificacao;

From source file org.croudtrip.gcm.GcmBroadcastReceiver.java

public class GcmBroadcastReceiver extends WakefulBroadcastReceiver {

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

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

From source file org.universAAL.android.receivers.system.GCMReceiver.java

/**
 * Receiver of GCM messages in the system. It is a wakefulBr because it will
 * call the MWService, and device should not sleep when sending the intent
 * there!
 * 
 * @author alfiva

From source file com.appsaur.tarucassist.AlarmReceiver.java

public class AlarmReceiver extends WakefulBroadcastReceiver {
    AlarmManager mAlarmManager;
    PendingIntent mPendingIntent;
    Calendar mCalendar;
    AudioManager myAudioManager;

From source file find.service.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 com.hmatalonga.greenhub.managers.sampling.DataEstimator.java

/**
 * Provides current Device data readings.
 *
 * Created by hugo on 09-04-2016.
 */
public class DataEstimator extends WakefulBroadcastReceiver {

From source file com.appsaur.tarucassist.AutomuteAlarmReceiver.java

public class AutomuteAlarmReceiver extends WakefulBroadcastReceiver {
    AlarmManager mAlarmManager;
    PendingIntent mPendingIntent;
    Calendar mCalendar;
    AudioManager myAudioManager;