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