Skip to content

Instantly share code, notes, and snippets.

@olegflo
Created November 6, 2012 16:02
Show Gist options
  • Save olegflo/4025676 to your computer and use it in GitHub Desktop.
Save olegflo/4025676 to your computer and use it in GitHub Desktop.
ofsnip
public class OnBootReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
if ("android.intent.action.BOOT_COMPLETED".equals(intent.getAction())) {
// do stuff
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment