Most of the API is implemented
[louyapi.git] / src / main / AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3     package="de.cweiske.ouya.louyapi">
4
5     <uses-permission android:name="android.permission.INTERNET" />
6     <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
7     <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> <!-- start when the OUYA booted -->
8     <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
9
10     <application
11         android:allowBackup="true"
12         android:icon="@drawable/ouya_icon"
13         android:label="@string/app_name">
14
15         <service
16             android:name=".HttpService"
17             android:enabled="true"
18             android:exported="false"
19             android:label="OUYA API HTTP server" />
20
21         <!-- auto-start after boot -->
22         <receiver
23             android:name=".Autostart"
24             android:exported="false">
25             <intent-filter>
26                 <action android:name="android.intent.action.BOOT_COMPLETED" />
27             </intent-filter>
28         </receiver>
29
30         <activity
31             android:name=".MainActivity"
32             android:exported="true">
33             <intent-filter>
34                 <action android:name="android.intent.action.MAIN" />
35
36                 <category android:name="android.intent.category.LAUNCHER" />
37                 <category android:name="tv.ouya.intent.category.APP" />
38             </intent-filter>
39         </activity>
40     </application>
41
42 </manifest>