Added new emergency number related device configs.

Added two new emergency number database related device configs to the
telephony device configs file. The first new device configs returns a boolean representing whether modem/config sourced emergency numbers should be ignored. The second new device config returns a boolean representing
whether emergency number routing defined in the android emergency number
database should be ignored.

Bug: 247636518
Test: manual
Change-Id: I532284432841a1990a37d831ed4fad8aae871251
This commit is contained in:
Grant Menke
2022-10-17 22:48:10 +00:00
parent 1179a454b0
commit 2332ec70a4

View File

@@ -117,4 +117,17 @@
<!-- Whether using the new SubscriptionManagerService or the old SubscriptionController -->
<bool name="config_using_subscription_manager_service">false</bool>
<java-symbol type="bool" name="config_using_subscription_manager_service" />
<!-- Boolean indicating whether the emergency numbers for a country, sourced from modem/config,
should be ignored if that country is 'locked' (i.e. ignore_modem_config set to true) in
Android Emergency DB. If this value is true, emergency numbers for a country, sourced from
modem/config, will be ignored if that country is 'locked' in Android Emergency DB. -->
<bool name="ignore_modem_config_emergency_numbers">false</bool>
<java-symbol type="bool" name="ignore_modem_config_emergency_numbers" />
<!-- Boolean indicating whether emergency numbers routing from the android emergency number
database should be ignored (i.e. routing will always be set to UNKNOWN). If this value is
true, routing from the android emergency number database will be ignored. -->
<bool name="ignore_emergency_number_routing_from_db">false</bool>
<java-symbol type="bool" name="ignore_emergency_number_routing_from_db" />
</resources>