Zoom seems to try using camera ID 2 for the back camera instead of camera ID 0. Block access to aux camera for Zoom to force it to use camera ID 0 for the back camera. Change-Id: I99d79259a2a3adefb72a5ffed5fbbb37bd8b756d
58 lines
2.3 KiB
XML
58 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2015-2016 The CyanogenMod Project
|
|
2017-2021 The LineageOS Project
|
|
SPDX-License-Identifier: Apache-2.0
|
|
-->
|
|
<resources>
|
|
<!-- Default value for proximity check on screen wake
|
|
NOTE ! - Enable for devices that have a fast response proximity sensor (ideally < 300ms)-->
|
|
<bool name="config_proximityCheckOnWake">true</bool>
|
|
<bool name="config_proximityCheckOnWakeEnabledByDefault">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 device has screen with higher aspect ratio -->
|
|
<bool name="config_haveHigherAspectRatioScreen">true</bool>
|
|
|
|
<!-- Defines the actions shown in advanced reboot submenu -->
|
|
<string-array name="config_restartActionsList">
|
|
<item>restart</item>
|
|
<item>restart_recovery</item>
|
|
<item>restart_bootloader</item>
|
|
<item>restart_fastboot</item>
|
|
</string-array>
|
|
|
|
<!-- The list of package IDs that are not allowed to use aux cameras. -->
|
|
<string-array name="config_cameraAuxPackageExcludeList" translatable="false">
|
|
<item>org.telegram.messenger</item>
|
|
<item>org.thunderdog.challegram</item>
|
|
<item>us.zoom.videomeetings</item>
|
|
</string-array>
|
|
</resources>
|