Home | History | Annotate | Download | only in InputDevices
      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             android:defaultToDeviceProtectedStorage="true"
     11             android:directBootAware="true">
     12 
     13         <receiver android:name=".InputDeviceReceiver"
     14                 android:label="@string/keyboard_layouts_label">
     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>
     23