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" |
Jeff Sharkey | f9fc6d6 | 2015-11-08 16:46:05 -0800 | [diff] [blame] | 9 | android:process="system" |
Jeff Sharkey | 8a372a0 | 2016-03-16 16:25:45 -0600 | [diff] [blame] | 10 | android:defaultToDeviceProtectedStorage="true" |
| 11 | android:directBootAware="true"> |
Jeff Brown | 9df6e7a | 2012-04-05 11:49:26 -0700 | [diff] [blame] | 12 | |
Jeff Brown | d9fec5d | 2012-05-17 16:01:54 -0700 | [diff] [blame] | 13 | <receiver android:name=".InputDeviceReceiver" |
| 14 | android:label="@string/keyboard_layouts_label"> |
Jeff Brown | 9df6e7a | 2012-04-05 11:49:26 -0700 | [diff] [blame] | 15 | <intent-filter> |
| 16 | <action android:name="android.hardware.input.action.QUERY_KEYBOARD_LAYOUTS" /> |
| 17 | </intent-filter> |
| 18 | <meta-data android:name="android.hardware.input.metadata.KEYBOARD_LAYOUTS" |
| 19 | android:resource="@xml/keyboard_layouts" /> |
| 20 | </receiver> |
| 21 | </application> |
| 22 | </manifest> |