8a372a0a28
Mostly consists of removing the word "encryption" from most APIs, since we can't actually make promises about the data being encrypted. Bug: 27531029 Change-Id: Iace9d7c4e64716abf86ed11847c40f3947e1d625
23 lines
910 B
XML
23 lines
910 B
XML
<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"
|
|
android:defaultToDeviceProtectedStorage="true"
|
|
android:directBootAware="true">
|
|
|
|
<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>
|