diff options
Diffstat (limited to 'overlay')
-rw-r--r-- | overlay/frameworks/base/core/res/res/values/config.xml | 45 |
1 files changed, 45 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 2e3383b..beaa43a 100644 --- a/overlay/frameworks/base/core/res/res/values/config.xml +++ b/overlay/frameworks/base/core/res/res/values/config.xml @@ -221,6 +221,51 @@ <!-- Flag indicating if the speed up audio on mt call code should be executed --> <bool name="config_speed_up_audio_on_mt_calls">true</bool> + <!-- Default list of files pinned by the Pinner Service --> + <string-array translatable="false" name="config_defaultPinnerServiceFiles"> + <item>"/system/framework/arm64/boot-framework.oat"</item> + <item>"/system/framework/framework.jar"</item> + <item>"/system/framework/oat/arm64/services.odex"</item> + <item>"/system/framework/services.jar"</item> + <item>"/system/framework/arm64/boot.oat"</item> + <item>"/system/framework/arm64/boot-core-libart.oat"</item> + <item>"/apex/com.android.runtime/javalib/core-oj.jar"</item> + <item>"/apex/com.android.runtime/javalib/core-libart.jar"</item> + <item>"/apex/com.android.media/javalib/updatable-media.jar"</item> + <item>"/product/priv-app/SystemUI/SystemUI.apk"</item> + <item>"/product/priv-app/SystemUI/oat/arm64/SystemUI.odex"</item> + <item>"/system/lib64/libsurfaceflinger.so"</item> + </string-array> + + <!-- List of files pinned by the Pinner Service with the apex boot image --> + <string-array translatable="false" name="config_apexBootImagePinnerServiceFiles"> + <item>"/system/framework/framework.jar"</item> + <item>"/system/framework/services.jar"</item> + <item>"/system/framework/arm64/apex.oat"</item> + <item>"/system/framework/arm64/apex-core-libart.oat"</item> + <item>"/apex/com.android.runtime/javalib/core-oj.jar"</item> + <item>"/apex/com.android.runtime/javalib/core-libart.jar"</item> + <item>"/apex/com.android.media/javalib/updatable-media.jar"</item> + </string-array> + + <!-- True if camera app should be pinned via Pinner Service --> + <bool name="config_pinnerCameraApp">true</bool> + + <!-- Should the pinner service pin the Home application? --> + <bool name="config_pinnerHomeApp">true</bool> + + <!-- Indicate whether closing the lid causes the device to go to sleep and opening + it causes the device to wake up. + The default is false. --> + <bool name="config_lidControlsSleep">true</bool> + + <!-- Whether device supports double tap to wake --> + <bool name="config_supportDoubleTapWake">true</bool> + + <!-- If true, the screen can be rotated via the accelerometer in all 4 + rotations as the default behavior. --> + <bool name="config_allowAllRotations">true</bool> + <!-- Whether camera shutter sound is forced or not (country specific). --> <bool name="config_camera_sound_forced">false</bool> |