forked from extern/Unexpected-Keyboard
68945ff227
API level 12 is required for "subtype" code introduced in 1.7. This adds a fallback for older version, "subtype" features are not available but the keyboard is usable. Changet he minimal version to 4 to be able to query the API level. Using integer constant for versions because that's how it's presented in the documentation. Build.VERSION_CODES is WTF.
39 lines
1.1 KiB
XML
39 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="juloo.keyboard2"
|
|
android:versionCode="9"
|
|
android:versionName="1.8"
|
|
android:hardwareAccelerated="false">
|
|
|
|
<uses-sdk android:minSdkVersion="4"
|
|
android:targetSdkVersion="29" />
|
|
|
|
<application android:label="@string/app_name"
|
|
android:allowBackup="true"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:hardwareAccelerated="false">
|
|
|
|
<service android:name="juloo.keyboard2.Keyboard2"
|
|
android:label="@string/app_name"
|
|
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>
|
|
|
|
<activity android:name="juloo.keyboard2.SettingsActivity"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:label="@string/settings_activity_label">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
|
|
|
</manifest>
|