summaryrefslogtreecommitdiffstats
path: root/packages/InputDevices/AndroidManifest.xml
blob: f0e4abcb58bf1a12a08541d860f7534f7d3b55b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.android.inputdevices"
        coreApp="true"
        android:sharedUserId="android.uid.system">

    <application
            android:allowClearUserData="false"
            android:label="@string/app_label"
            android:process="system">

        <receiver android:name=".InputDeviceReceiver"
                android:label="@string/keyboard_layouts_label">
            <intent-filter>
                <action android:name="android.hardware.input.action.QUERY_KEYBOARD_LAYOUTS" />
            </intent-filter>
            <meta-data android:name="android.hardware.input.metadata.KEYBOARD_LAYOUTS"
                    android:resource="@xml/keyboard_layouts" />
        </receiver>
    </application>
</manifest>