blob: 61b5131098cfe5b01117a842cef99e844f1ad2bb [file] [log] [blame]
The Android Open Source Project52d4c302009-03-03 19:29:09 -08001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2 package="com.example.android.softkeyboard">
3 <application android:label="@string/ime_name">
4 <service android:name="SoftKeyboard"
5 android:permission="android.permission.BIND_INPUT_METHOD">
6 <intent-filter>
7 <action android:name="android.view.InputMethod" />
8 </intent-filter>
9 <meta-data android:name="android.view.im" android:resource="@xml/method" />
10 </service>
11 </application>
12</manifest>