2015-07-30 20:14:55 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="juloo.keyboard2"
|
2021-12-12 23:36:19 +01:00
|
|
|
android:versionCode="13"
|
|
|
|
android:versionName="1.10.0"
|
2015-08-04 21:07:28 +02:00
|
|
|
android:hardwareAccelerated="false">
|
2015-08-03 00:01:04 +02:00
|
|
|
|
2021-05-09 00:56:59 +02:00
|
|
|
<uses-sdk android:minSdkVersion="4"
|
2021-12-12 23:48:05 +01:00
|
|
|
android:targetSdkVersion="30" />
|
2015-08-04 17:55:48 +02:00
|
|
|
|
2015-07-30 20:14:55 +02:00
|
|
|
<application android:label="@string/app_name"
|
2015-08-04 21:07:28 +02:00
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@drawable/ic_launcher"
|
|
|
|
android:hardwareAccelerated="false">
|
2015-07-30 20:14:55 +02:00
|
|
|
|
2021-01-04 23:48:54 +01:00
|
|
|
<service android:name="juloo.keyboard2.Keyboard2"
|
2015-07-30 20:14:55 +02:00
|
|
|
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>
|
|
|
|
|
2021-01-04 23:48:54 +01:00
|
|
|
<activity android:name="juloo.keyboard2.SettingsActivity"
|
2015-08-08 16:47:22 +02:00
|
|
|
android:icon="@drawable/ic_launcher"
|
|
|
|
android:label="@string/settings_activity_label">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2015-07-30 20:14:55 +02:00
|
|
|
</application>
|
2015-08-03 00:01:04 +02:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
|
|
|
|
2015-07-30 20:14:55 +02:00
|
|
|
</manifest>
|