<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.rmdir.ms2debounce"
- android:versionCode="1"
- android:versionName="1.0">
+ android:versionCode="9"
+ android:versionName="1.9">
+ <uses-sdk android:minSdkVersion="8" />
+ <uses-configuration android:reqKeyboardType="qwerty" />
+ <supports-screens android:smallScreens="false"
+ android:normalScreens="true"
+ android:largeScreens="false" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<application android:label="@string/app_name" android:icon="@drawable/icon">
<activity android:name="MS2Debounce"
<category android:name="android.intent.category.HOME" />
</intent-filter>
</receiver>
+ <service
+ android:name=".DebounceBootService"
+ android.label="DebounceBootService">
+ </service>
</application>
</manifest>