mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
637 B
Java
26 lines
637 B
Java
/**
|
|
* Copyright (c) 2012 Todoroo Inc
|
|
*
|
|
* See the file "LICENSE" for the full license governing this code.
|
|
*/
|
|
package org.weloveastrid.rmilk;
|
|
|
|
import android.content.BroadcastReceiver;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
|
|
import com.todoroo.andlib.service.ContextManager;
|
|
|
|
public class MilkStartupReceiver extends BroadcastReceiver {
|
|
|
|
@Override
|
|
/** Called when device is restarted */
|
|
public void onReceive(final Context context, Intent intent) {
|
|
ContextManager.setContext(context);
|
|
|
|
MilkBackgroundService.scheduleService();
|
|
MilkUtilities.INSTANCE.stopOngoing();
|
|
}
|
|
|
|
}
|