summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Bono <bono.michele94@gmail.com>2019-03-04 11:26:35 +0100
committerMichele Bono <bono.michele94@gmail.com>2019-08-27 10:08:36 +0200
commit30e9d31b2316ec784d94be0d32f4f7a52a034bf3 (patch)
treefac40fdfce2f123f7c2acac87979d8163ac3a5cf
parentb910cbf9cbea19a0e92006d16757d1d185e771d6 (diff)
shamu: Enable AICP overlays
-rw-r--r--overlay/frameworks/base/core/res/res/values/config.xml41
1 files changed, 41 insertions, 0 deletions
diff --git a/overlay/frameworks/base/core/res/res/values/config.xml b/overlay/frameworks/base/core/res/res/values/config.xml
index 8e6e8ae9..685bd4c6 100644
--- a/overlay/frameworks/base/core/res/res/values/config.xml
+++ b/overlay/frameworks/base/core/res/res/values/config.xml
@@ -356,4 +356,45 @@
<!-- Whether device supports double tap to wake -->
<bool name="config_supportDoubleTapWake">true</bool>
+
+ <!-- Whether or not swipe up gesture's opt-in setting is available on this device -->
+ <bool name="config_swipe_up_gesture_setting_available">true</bool>
+
+ <!-- Smart Pixels -->
+ <bool name="config_enableSmartPixels">true</bool>
+
+ <!-- Hardware keys present on the device, stored as a bit field.
+ This integer should equal the sum of the corresponding value for each
+ of the following keys present:
+ 1 - Home
+ 2 - Back
+ 4 - Menu
+ 8 - Assistant (search)
+ 16 - App switch
+ 32 - Camera
+ 64 - Volume rocker
+ For example, a device with Home, Back and Menu keys would set this
+ config to 7. -->
+ <integer name="config_deviceHardwareKeys">64</integer>
+
+ <!-- Hardware keys present on the device with the ability to wake, stored as a bit field.
+ This integer should equal the sum of the corresponding value for each
+ of the following keys present:
+ 1 - Home
+ 2 - Back
+ 4 - Menu
+ 8 - Assistant (search)
+ 16 - App switch
+ 32 - Camera
+ 64 - Volume rocker
+ For example, a device with Home, Back and Menu keys would set this
+ config to 7. -->
+ <integer name="config_deviceHardwareWakeKeys">64</integer>
+
+ <!-- Whether the always on display mode is available. -->
+ <bool name="config_dozeAlwaysOnDisplayAvailable">true</bool>
+
+ <!-- Control whether the always on display mode is enabled by default. This value will be used
+ during initialization when the setting is still null. -->
+ <bool name="config_dozeAlwaysOnEnabled">false</bool>
</resources>