]>
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" | |
37a6af62 MG |
4 | android:versionCode="9" |
5 | android:versionName="1.9"> | |
a7c1cd77 MG |
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" /> | |
62c7d45f | 11 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
48f479b6 | 12 | <uses-permission android:name="android.permission.ACCESS_SUPERUSER" /> |
7bcde8d7 MG |
13 | <application android:label="@string/app_name" android:icon="@drawable/icon"> |
14 | <activity android:name="MS2Debounce" | |
15 | android:label="@string/app_name"> | |
16 | <intent-filter> | |
17 | <action android:name="android.intent.action.MAIN" /> | |
18 | <category android:name="android.intent.category.LAUNCHER" /> | |
19 | </intent-filter> | |
20 | </activity> | |
c32e803e MG |
21 | <receiver android:name=".DebounceBootReceiver"> |
22 | <intent-filter> | |
23 | <action android:name="android.intent.action.BOOT_COMPLETED" /> | |
24 | <category android:name="android.intent.category.HOME" /> | |
25 | </intent-filter> | |
26 | </receiver> | |
1a5cc22f MG |
27 | <service |
28 | android:name=".DebounceBootService" | |
29 | android.label="DebounceBootService"> | |
30 | </service> | |
7bcde8d7 MG |
31 | </application> |
32 | </manifest> |