Files
padkey/AndroidManifest.xml
2013-03-23 23:41:05 +09:00

38 lines
1.2 KiB
XML

<!--
* Released into the public domain
* by Aki Goto <tyatsumi@gmail.com>
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="jp.dip.humming.padkey"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="16" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<service android:name="PadKeyService"
android:label="@string/service_label"
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="SettingsActivity"
android:label="@string/settings_label">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
</application>
</manifest>