]>
Commit | Line | Data |
---|---|---|
7bcde8d7 MG |
1 | <?xml version="1.0" encoding="utf-8"?> |
2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
3 | package="de.rmdir.ms2debounce" | |
4 | android:versionCode="1" | |
5 | android:versionName="1.0"> | |
62c7d45f | 6 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
7bcde8d7 MG |
7 | <application android:label="@string/app_name" android:icon="@drawable/icon"> |
8 | <activity android:name="MS2Debounce" | |
9 | android:label="@string/app_name"> | |
10 | <intent-filter> | |
11 | <action android:name="android.intent.action.MAIN" /> | |
12 | <category android:name="android.intent.category.LAUNCHER" /> | |
13 | </intent-filter> | |
14 | </activity> | |
c32e803e MG |
15 | <receiver android:name=".DebounceBootReceiver"> |
16 | <intent-filter> | |
17 | <action android:name="android.intent.action.BOOT_COMPLETED" /> | |
18 | <category android:name="android.intent.category.HOME" /> | |
19 | </intent-filter> | |
20 | </receiver> | |
7bcde8d7 MG |
21 | </application> |
22 | </manifest> |