List of usage examples for android.app IntentService subclass-usage
From source file ar.com.martinrevert.argenteam.GcmIntentService.java
/** * IntentService responsible for handling GCM messages. */ public class GcmIntentService extends IntentService { private static final String TAG = "GcmIntentService";
From source file org.klnusbaum.udj.network.PlayerCommService.java
/** * Adapter used to sync up with the UDJ server. */ public class PlayerCommService extends IntentService { public enum PlayerJoinError {
From source file com.hukum.app_framework.application.gcm.controller.AppGcmRegistrationIntentService.java
public class AppGcmRegistrationIntentService extends IntentService implements OnAPIResponseListener { private static final String TAG = "AppGcmRegistration"; private static final String[] TOPICS = { "global" }; public static final String SENDER_ID = "32670831119";
From source file com.daiv.android.twitter.services.WidgetRefreshService.java
public class WidgetRefreshService extends IntentService { SharedPreferences sharedPrefs; public static boolean isRunning = false; public WidgetRefreshService() {
From source file com.conferenceengineer.android.iosched.service.SessionAlarmService.java
/** * Background service to handle scheduling of starred session notification via * {@link android.app.AlarmManager}. */ public class SessionAlarmService extends IntentService { private static final String TAG = makeLogTag(SessionAlarmService.class);
From source file com.johan.vertretungsplan.background.VertretungsplanService.java
public class VertretungsplanService extends IntentService { public static final int RESULT_OK = -1; public static final int RESULT_ERROR = 0; public static final int RESULT_VERSION_ERROR = 1; public static final int RESULT_UNAUTHORIZED_ERROR = 2; public static final String KEY_NOTIFICATION = "notification";
From source file com.ayuget.redface.job.PrivateMessagesService.java
public class PrivateMessagesService extends IntentService { private static final String LOG_TAG = PrivateMessagesService.class.getSimpleName(); private static final long[] VIBRATION_PATTERN = new long[] { 0, 100, 200, 100, 100, 100 }; @Inject
From source file gov.wa.wsdot.android.wsdot.service.FerriesSchedulesSyncService.java
public class FerriesSchedulesSyncService extends IntentService { private static final String DEBUG_TAG = "FerriesSchedulesSyncService"; private static final String FERRIES_SCHEDULES_URL = "http://data.wsdot.wa.gov/mobile/WSFRouteSchedules.js.gz"; public FerriesSchedulesSyncService() {
From source file com.emlago.sensorex.services.activity_recognition.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.example.soumya.feedthepanda.RegistrationIntentService.java
public class RegistrationIntentService extends IntentService { private static final String TAG = "RegIntentService"; private static final String[] TOPICS = { "global" }; public RegistrationIntentService() {