Jeff Brown | 9df6e7a | 2012-04-05 11:49:26 -0700 | [diff] [blame] | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | package="com.android.inputdevices" |
| 3 | coreApp="true" |
| 4 | android:sharedUserId="android.uid.system"> |
| 5 | |
| 6 | <application |
| 7 | android:allowClearUserData="false" |
| 8 | android:label="@string/app_label" |
| 9 | android:process="system"> |
| 10 | |
Jeff Brown | d9fec5d | 2012-05-17 16:01:54 -0700 | [diff] [blame] | 11 | <receiver android:name=".InputDeviceReceiver" |
| 12 | android:label="@string/keyboard_layouts_label"> |
Jeff Brown | 9df6e7a | 2012-04-05 11:49:26 -0700 | [diff] [blame] | 13 | <intent-filter> |
| 14 | <action android:name="android.hardware.input.action.QUERY_KEYBOARD_LAYOUTS" /> |
| 15 | </intent-filter> |
| 16 | <meta-data android:name="android.hardware.input.metadata.KEYBOARD_LAYOUTS" |
| 17 | android:resource="@xml/keyboard_layouts" /> |
| 18 | </receiver> |
| 19 | </application> |
| 20 | </manifest> |