mirror of
https://github.com/moparisthebest/keepass2android
synced 2025-02-22 05:41:56 -05:00
22 lines
830 B
XML
22 lines
830 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="keepass2android.softkeyboard" android:versionCode="1">
|
|
<uses-sdk android:targetSdkVersion="14" android:minSdkVersion="8"/>
|
|
<supports-screens
|
|
android:anyDensity="true"
|
|
android:largeScreens="true"
|
|
android:normalScreens="true"
|
|
android:smallScreens="true" />
|
|
<application android:label="@string/ime_name">
|
|
<service android:name="KP2AKeyboard"
|
|
android:permission="android.permission.BIND_INPUT_METHOD">
|
|
<intent-filter>
|
|
<action android:name="android.view.InputMethod" />
|
|
</intent-filter>
|
|
<meta-data android:name="android.view.im" android:resource="@xml/method" />
|
|
</service>
|
|
|
|
|
|
</application>
|
|
|
|
</manifest>
|