summaryrefslogtreecommitdiffstats
path: root/core/res
diff options
context:
space:
mode:
authorMichael Wright <michaelwr@google.com>2015-10-20 15:31:01 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-10-20 15:31:01 +0000
commit57a5cba606e5d58cc4ad1c5c1cf4918dc16fe819 (patch)
tree9b0a8e5225992b4272d3a572a1e1f3a8d74d808d /core/res
parentad968cf4e55afdd897ea84a44b7450442aea1e1d (diff)
parent9209c9cd9a6f779d0d9d86f9b2e368df564fa6bb (diff)
downloadframeworks_base-57a5cba606e5d58cc4ad1c5c1cf4918dc16fe819.zip
frameworks_base-57a5cba606e5d58cc4ad1c5c1cf4918dc16fe819.tar.gz
frameworks_base-57a5cba606e5d58cc4ad1c5c1cf4918dc16fe819.tar.bz2
Merge "Add SystemUI component to watch for keyboard attachment." into mnc-dr-dev
Diffstat (limited to 'core/res')
-rw-r--r--core/res/AndroidManifest.xml5
-rw-r--r--core/res/res/values/config.xml4
-rw-r--r--core/res/res/values/symbols.xml2
3 files changed, 9 insertions, 2 deletions
diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml
index f13f821..4f71699 100644
--- a/core/res/AndroidManifest.xml
+++ b/core/res/AndroidManifest.xml
@@ -2059,10 +2059,11 @@
<permission android:name="android.permission.SET_KEYBOARD_LAYOUT"
android:protectionLevel="signature" />
- <!-- Allows an application to monitor changes in tablet mode.
+ <!-- Allows an application to query tablet mode state and monitor changes
+ in it.
<p>Not for use by third-party applications.
@hide -->
- <permission android:name="android.permission.TABLET_MODE_LISTENER"
+ <permission android:name="android.permission.TABLET_MODE"
android:protectionLevel="signature" />
<!-- Allows an application to request installing packages. Apps
diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml
index 6e8f81e..6c96f84 100644
--- a/core/res/res/values/config.xml
+++ b/core/res/res/values/config.xml
@@ -2322,4 +2322,8 @@
<!-- Allow the gesture to double tap the power button twice to start the camera while the device
is non-interactive. -->
<bool name="config_cameraDoubleTapPowerGestureEnabled">true</bool>
+
+ <!-- The BT name of the keyboard packaged with the device. If this is defined, SystemUI will
+ automatically try to pair with it when the device exits tablet mode. -->
+ <string translatable="false" name="config_packagedKeyboardName"></string>
</resources>
diff --git a/core/res/res/values/symbols.xml b/core/res/res/values/symbols.xml
index 52892ba..1bfb06c 100644
--- a/core/res/res/values/symbols.xml
+++ b/core/res/res/values/symbols.xml
@@ -2330,4 +2330,6 @@
<java-symbol type="bool" name="config_cameraDoubleTapPowerGestureEnabled" />
<java-symbol type="drawable" name="platlogo_m" />
+
+ <java-symbol type="string" name="config_packagedKeyboardName" />
</resources>