1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2024 The Android Open Source Project
3
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7
8          http://www.apache.org/licenses/LICENSE-2.0
9
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15-->
16
17<!-- Phone app resources that may need to be customized
18     for different hardware or product builds. -->
19<resources>
20    <!-- Dynamic routing of emergency calls: trying normal routing if it's available.
21         Otherwise, emergency routing. -->
22    <bool name="dynamic_routing_emergency_enabled">true</bool>
23
24    <!-- Array of countries that the dynamic routing is supported.
25         Values should be ISO3166 country codes in lowercase. -->
26    <string-array name="config_countries_dynamic_routing_emergency_enabled"
27            translatable="false">
28        <item>in</item>
29        <item>il</item>
30        <item>tw</item>
31        <item>sg</item>
32        <item>ch</item>
33        <item>sk</item>
34        <item>pl</item>
35        <item>si</item>
36        <item>ba</item>
37    </string-array>
38
39    <!-- Array of emergency numbers for dynamic routing.
40         Values are the tuples of Country ISO, MNC, and numbers. -->
41    <string-array name="config_dynamic_routing_emergency_numbers"
42      translatable="false">
43        <item>in,,101,102,103,108</item>
44        <item>il,,101,102</item>
45        <item>tw,,110,119</item>
46        <!-- b/343344830 -->
47        <item>sg,01,995</item>
48        <item>sg,02,995</item>
49        <item>sg,03,995</item>
50        <item>sg,10,995</item>
51        <item>ch,,1414</item>
52        <item>gp,,115,119,191,196,197,116000,116111,116117</item>
53        <item>sk,,159</item>
54        <item>pl,,984,985,986,987,989,991,992,993,994,995,996,997,998,999</item>
55        <item>re,,115,119,191,196,197,116000,116111,116117</item>
56        <item>si,,113</item>
57        <item>ba,,122,123,124</item>
58    </string-array>
59
60    <!-- The component name(a flattened ComponentName string) for the telephony domain selection
61         service. The device should fallback to the modem based domain selection architecture
62         if this is not configured. -->
63    <string name="config_domain_selection_service_component_name" translatable="false">com.android.phone/com.android.services.telephony.domainselection.TelephonyDomainSelectionService</string>
64</resources>
65