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"
|
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="1.0">
|
2015-08-03 00:01:04 +02:00
|
|
|
|
2015-07-30 20:14:55 +02:00
|
|
|
<application android:label="@string/app_name"
|
|
|
|
android:icon="@drawable/ic_launcher">
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
</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>
|