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"
|
2015-10-28 22:57:43 +01:00
|
|
|
android:versionCode="6"
|
|
|
|
android:versionName="1.5"
|
2015-08-04 21:07:28 +02:00
|
|
|
android:hardwareAccelerated="false">
|
2015-08-03 00:01:04 +02:00
|
|
|
|
2015-09-30 23:02:23 +02:00
|
|
|
<uses-sdk android:minSdkVersion="3"
|
2015-08-04 17:55:48 +02:00
|
|
|
android:targetSdkVersion="22" />
|
|
|
|
|
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
|
|
|
|
|
|
|
<service android:name="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>
|
|
|
|
|
2015-08-08 16:47:22 +02:00
|
|
|
<activity android:name="SettingsActivity"
|
|
|
|
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>
|