]>
Commit | Line | Data |
---|---|---|
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="8" | |
5 | android:versionName="1.8"> | |
6 | <uses-sdk android:minSdkVersion="8" /> | |
7 | <uses-configuration android:reqKeyboardType="qwerty" /> | |
8 | <supports-screens android:smallScreens="false" | |
9 | android:normalScreens="true" | |
10 | android:largeScreens="false" /> | |
11 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> | |
12 | <application android:label="@string/app_name" android:icon="@drawable/icon"> | |
13 | <activity android:name="MS2Debounce" | |
14 | android:label="@string/app_name"> | |
15 | <intent-filter> | |
16 | <action android:name="android.intent.action.MAIN" /> | |
17 | <category android:name="android.intent.category.LAUNCHER" /> | |
18 | </intent-filter> | |
19 | </activity> | |
20 | <receiver android:name=".DebounceBootReceiver"> | |
21 | <intent-filter> | |
22 | <action android:name="android.intent.action.BOOT_COMPLETED" /> | |
23 | <category android:name="android.intent.category.HOME" /> | |
24 | </intent-filter> | |
25 | </receiver> | |
26 | <service | |
27 | android:name=".DebounceBootService" | |
28 | android.label="DebounceBootService"> | |
29 | </service> | |
30 | </application> | |
31 | </manifest> |