Handle requests with // at the beginning
[louyapi.git] / src / main / java / de / cweiske / ouya / louyapi / Autostart.java
1 package de.cweiske.ouya.louyapi;
2
3 import android.content.BroadcastReceiver;
4 import android.content.Context;
5 import android.content.Intent;
6
7 /**
8  * Called when the ouya finishes booting.
9  *
10  * @author Christian Weiske, cweiske@cweiske.de
11  */
12 public class Autostart extends BroadcastReceiver {
13     @Override
14     public void onReceive(Context context, Intent intent) {
15         context.startService(new Intent(context, HttpService.class));
16     }
17 }