The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 1 | <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> |