]> git.zerfleddert.de Git - ms2-fixes/blob - MS2Debounce/AndroidManifest.xml
d4b5fc9a3a2eeffd526aff3b09036fcfdec3ecf6
[ms2-fixes] / MS2Debounce / AndroidManifest.xml
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="5"
5 android:versionName="1.5">
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 </application>
27 </manifest>
Impressum, Datenschutz