mirror of
https://github.com/moparisthebest/keepass2android
synced 2025-02-22 22:03:48 -05:00
22 lines
807 B
XML
22 lines
807 B
XML
![]() |
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
package="keepass2android.softkeyboard">
|
||
|
<uses-sdk android:targetSdkVersion="14" android:minSdkVersion="11"/>
|
||
|
<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>
|