<?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="8"
+ android:versionName="1.8">
+ <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"
android:label="@string/app_name">
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
- <service android:name=".DebounceService"/>
+ <receiver android:name=".DebounceBootReceiver">
+ <intent-filter>
+ <action android:name="android.intent.action.BOOT_COMPLETED" />
+ <category android:name="android.intent.category.HOME" />
+ </intent-filter>
+ </receiver>
+ <service
+ android:name=".DebounceBootService"
+ android.label="DebounceBootService">
+ </service>
</application>
</manifest>