0fa985321a7626ef09ccf51d443e8986cfa787c2
[headphoneindicator.git] / 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.headphoneindicator"
4     android:versionCode="1"
5     android:versionName="0.1">
6
7     <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
8
9     <application
10         android:allowBackup="true"
11         android:icon="@drawable/headphones_w"
12         android:label="@string/app_name"
13         android:supportsRtl="true">
14
15         <activity android:name=".MainActivity">
16             <intent-filter>
17                 <action android:name="android.intent.action.MAIN" />
18                 <category android:name="android.intent.category.LAUNCHER" />
19             </intent-filter>
20         </activity>
21         <service android:name=".BackgroundService"/>
22
23         <!-- auto-start after boot -->
24         <receiver android:name=".Autostart" >
25             <intent-filter>
26                 <action android:name="android.intent.action.BOOT_COMPLETED" />
27             </intent-filter>
28         </receiver>
29     </application>
30
31 </manifest>