List of usage examples for android.app IntentService subclass-usage
From source file com.commonsware.android.qrck.SyncService.java
public class SyncService extends IntentService { static final String ACTION_SYNC_STATUS = "com.commonsware.android.qrck.SYNC_STATUS"; static final String KEY_STATUS = "KEY_STATUS"; private static final String TAG = "QRCodeKeeper-SyncService"; private static final String SYNC_URL = "http://misc.commonsware.com/codes.json"; static final String SYNC_LOCAL_FILE = "codes.json";
From source file de.Maxr1998.xposed.maxlock.ui.ThemeService.java
public class ThemeService extends IntentService { private static final String themeOrigFile = "theme.xml"; private static SharedPreferences PREFS_THEME; public final String backgroundOrigFile = "background.png"; File themeFile;
From source file com.appsmobilecompany.base.util.GcmIntentService.java
/**
* This {@code IntentService} does the actual handling of the GCM message.
* {@code GcmBroadcastReceiver} (a {@code WakefulBroadcastReceiver}) holds a
* partial wake lock for this service while the service does its work. When the
* service is finished, it calls {@code completeWakefulIntent()} to release the
* wake lock.
From source file com.doctoror.surprise.SurpriseService.java
public final class SurpriseService extends IntentService { private static final String TAG = "SurpriseService"; public static final String ACTION_SURPRISE_FINISHED = ".action.SURPRISE_FINISHED"; public static final String ACTION_UPGRADE_FINISHED = ".action.UPGRADE_FINISHED";
From source file com.anthonykeane.speedzone.ActivityRecognitionIntentService.java
/** * Service that receives ActivityRecognition updates. It receives updates * in the background, even if the main Activity is not visible. */ public class ActivityRecognitionIntentService extends IntentService {
From source file com.github.chenxiaolong.dualbootpatcher.appsharing.AppSharingService.java
public class AppSharingService extends IntentService { private static final String TAG = AppSharingService.class.getSimpleName(); public static final String ACTION = "action"; public static final String ACTION_PACKAGE_REMOVED = "package_removed";
From source file com.rampgreen.caretakermobile.GcmIntentService.java
/**
* This {@code IntentService} does the actual handling of the GCM message.
* {@code GcmBroadcastReceiver} (a {@code WakefulBroadcastReceiver}) holds a
* partial wake lock for this service while the service does its work. When the
* service is finished, it calls {@code completeWakefulIntent()} to release the
* wake lock.
From source file com.hybris.mobile.lib.location.geofencing.service.GeofencingIntentService.java
/** * Intent service when a geofence is triggered */ public class GeofencingIntentService extends IntentService { private static final String TAG = GeofencingIntentService.class.getCanonicalName();
From source file com.NotifyMe.GcmIntentService.java
/**
* This {@code IntentService} does the actual handling of the GCM message.
* {@code GcmBroadcastReceiver} (a {@code WakefulBroadcastReceiver}) holds a
* partial wake lock for this service while the service does its work. When the
* service is finished, it calls {@code completeWakefulIntent()} to release the
* wake lock.
From source file com.devsh.androidlogin.gcm.RegistrationIntentService.java
public class RegistrationIntentService extends IntentService { private static final String TAG = "RegIntentService"; private static final String[] TOPICS = { "global" }; public static final String SEND_TOKEN_TO_SERVER = "sentTokenToServer"; public static final String REGISTRATION_COMPLETE = "registrationComplete";