zumapro: Selectively update overlays from BP2A

Change-Id: Icfa723318c46e0674772b7138e2e83b387908a29
This commit is contained in:
Michael Bestas 2025-06-25 13:00:26 +03:00 committed by Michael Bestas
parent 6e4b61d67c
commit 8a803c87ce
No known key found for this signature in database
4 changed files with 55 additions and 6 deletions

View file

@ -31,6 +31,38 @@
<!-- B y-intercept --> <item>-0.349361641294833436</item> <!-- B y-intercept --> <item>-0.349361641294833436</item>
</string-array> </string-array>
<!-- The fixed keyboard vibration strength in [0,1], or -1 to indicate the strength not fixed
and should depend on the touch feedback intensity user setting -->
<item name="config_keyboardHapticFeedbackFixedAmplitude" type="dimen">0.62</item>
<!-- Indicating if keyboard vibration settings supported or not. -->
<bool name="config_keyboardVibrationSettingsSupported">true</bool>
<!-- Indicating if ringtone vibration settings supported or not. -->
<bool name="config_ringtoneVibrationSettingsSupported">true</bool>
<!-- External display peak refresh rate for the given device. Change this value if you want to
prevent the framework from using higher refresh rates, even if display modes with higher
refresh rates are available from hardware composer. Only has an effect if this value and
config_externalDisplayPeakWidth and config_externalDisplayPeakHeight are non-zero. -->
<integer name="config_externalDisplayPeakRefreshRate">61</integer>
<!-- External display peak width for the given device. Change this value if you want
to prevent the framework from using higher resolution, even if display modes with higher
resolutions are available from hardware composer. Only has an effect if this value and
config_externalDisplayPeakRefreshRate and config_externalDisplayPeakHeight are non-zero.-->
<integer name="config_externalDisplayPeakWidth">1920</integer>
<!-- External display peak height for the given device. Change this value if you want
to prevent the framework from using higher resolution, even if display modes with higher
resolutions are available from hardware composer. Only has an effect if this value and
config_externalDisplayPeakRefreshRate and config_externalDisplayPeakWidth are non-zero. -->
<integer name="config_externalDisplayPeakHeight">1080</integer>
<!-- Enable synchronization of the displays refresh rates by applying the default low refresh
rate. -->
<bool name="config_refreshRateSynchronizationEnabled">true</bool>
<!-- List of comma separated package names for which we the system will not show crash, ANR, <!-- List of comma separated package names for which we the system will not show crash, ANR,
etc. dialogs. --> etc. dialogs. -->
<string translatable="false" name="config_appsNotReportingCrashes">com.google.android.euicc</string> <string translatable="false" name="config_appsNotReportingCrashes">com.google.android.euicc</string>

View file

@ -243,9 +243,6 @@
<item>"/system_ext/priv-app/SystemUI/SystemUI.apk"</item> <item>"/system_ext/priv-app/SystemUI/SystemUI.apk"</item>
</string-array> </string-array>
<!-- Bytes that the PinnerService will pin for Home app -->
<integer name="config_pinnerHomePinBytes">6291456</integer>
<!-- The default intensity level for alarm vibrations. See <!-- The default intensity level for alarm vibrations. See
Settings.System.ALARM_VIBRATION_INTENSITY more details on the constant values and Settings.System.ALARM_VIBRATION_INTENSITY more details on the constant values and
meanings. --> meanings. -->
@ -487,12 +484,17 @@
<!-- The class name to receive the intent for provisioning. --> <!-- The class name to receive the intent for provisioning. -->
<string name="config_satellite_carrier_roaming_esos_provisioned_class">com.google.android.apps.stargate.registration.RegistrationReceiver_Receiver</string> <string name="config_satellite_carrier_roaming_esos_provisioned_class">com.google.android.apps.stargate.registration.RegistrationReceiver_Receiver</string>
<!-- Whether the device supports disabling satellite while satellite enabling is in progress.
-->
<bool name="config_support_disable_satellite_while_enable_in_progress">false</bool>
<!-- List of country codes where oem-enabled satellite services are either allowed or disallowed <!-- List of country codes where oem-enabled satellite services are either allowed or disallowed
by the device. Each country code is a lowercase 2 character ISO-3166-1 alpha-2. --> by the device. Each country code is a lowercase 2 character ISO-3166-1 alpha-2. -->
<string-array name="config_oem_enabled_satellite_country_codes"> <string-array name="config_oem_enabled_satellite_country_codes">
<item>US</item> <item>US</item>
<item>PR</item> <item>PR</item>
<item>CA</item> <item>CA</item>
<item>AU</item>
<item>AT</item> <item>AT</item>
<item>BE</item> <item>BE</item>
<item>BG</item> <item>BG</item>
@ -508,6 +510,7 @@
<item>HU</item> <item>HU</item>
<item>IE</item> <item>IE</item>
<item>IT</item> <item>IT</item>
<item>LI</item>
<item>LV</item> <item>LV</item>
<item>LT</item> <item>LT</item>
<item>LU</item> <item>LU</item>
@ -590,4 +593,11 @@
<item>1001</item> <item>1001</item>
</integer-array> </integer-array>
<!-- Whether to enable APDU sender optimization i.e. a logical channel is opened and
kept open for multiple APDU commands within one session.-->
<bool name="euicc_optimize_apdu_sender">true</bool>
<!-- Whether desktop mode is supported on the current device -->
<bool name="config_isDesktopModeSupported">true</bool>
</resources> </resources>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
SPDX-FileCopyrightText: The LineageOS Project
SPDX-License-Identifier: Apache-2.0
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Indicates the data limit in bytes that can be used for bootstrap sim until factory reset.
-1 means unlimited. -->
<integer name="config_esim_bootstrap_data_limit_bytes">235929600</integer>
</resources>

View file

@ -31,7 +31,4 @@
<!-- String indicating the package name of the device GbaService implementation. --> <!-- String indicating the package name of the device GbaService implementation. -->
<string name="config_gba_package" translatable="false">com.shannon.rcsservice</string> <string name="config_gba_package" translatable="false">com.shannon.rcsservice</string>
<!-- Whether to turn off non-emergency nb iot ntn satellite for emergency call -->
<bool name="config_turn_off_non_emergency_nb_iot_ntn_satellite_for_emergency_call">false</bool>
</resources> </resources>