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.
tasks/astrid/plugin-src/com/todoroo/astrid/rmilk/MilkStartupReceiver.java

19 lines
460 B
Java

/**
* See the file "LICENSE" for the full license governing this code.
*/
package com.todoroo.astrid.rmilk;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
public class MilkStartupReceiver extends BroadcastReceiver {
@Override
/** Called when device is restarted */
public void onReceive(final Context context, Intent intent) {
MilkBackgroundService.scheduleService();
}
}