]> git.zerfleddert.de Git - ms2-fixes/blame - MS2Debounce/AndroidManifest.xml
add logging to runAsRoot
[ms2-fixes] / MS2Debounce / AndroidManifest.xml
CommitLineData
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"
c17cfcc7
MG
4 android:versionCode="7"
5 android:versionName="1.7">
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" />
7bcde8d7
MG
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>
c32e803e
MG
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>
7bcde8d7
MG
26 </application>
27</manifest>
Impressum, Datenschutz