1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  ~ Copyright (C) 2017 The Android Open Source Project
4  ~
5  ~ Licensed under the Apache License, Version 2.0 (the "License");
6  ~ you may not use this file except in compliance with the License.
7  ~ You may obtain a copy of the License at
8  ~
9  ~      http://www.apache.org/licenses/LICENSE-2.0
10  ~
11  ~ Unless required by applicable law or agreed to in writing, software
12  ~ distributed under the License is distributed on an "AS IS" BASIS,
13  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  ~ See the License for the specific language governing permissions and
15  ~ limitations under the License
16  -->
17
18<resources>
19  <!-- Flag to control if HD codec is supported by Sprint. -->
20  <bool name="motorola_sprint_hd_codec">false</bool>
21
22  <!-- Hidden menu configuration for Motorola. -->
23  <!-- Hidden menu is only enabled for sprint-->
24  <bool name="motorola_hidden_menu_enabled">false</bool>
25  <!-- This defines the specific key sequence that will be caught in the SpecialCharSequenceMgr
26       such as, ##OMADM# -->
27  <string-array name="motorola_hidden_menu_key_sequence">
28    <item>##66236#</item>   <!--##OMADM#-->
29    <item>##2539#</item>    <!--##AKEY#-->
30    <item>##786#</item>     <!--##RTN#-->
31    <item>##72786#</item>   <!--##SCRTN#-->
32    <item>##3282#</item>    <!--##DATA#-->
33    <item>##33284#</item>   <!--##DEBUG#-->
34    <item>##3424#</item>    <!--##DIAG#-->
35    <item>##564#</item>     <!--##LOG#-->
36    <item>##4567257#</item> <!--##GLMSCLR#-->
37    <item>##873283#</item>  <!--##UPDATE#-->
38    <item>##6343#</item>    <!--##MEID#-->
39    <item>##27263#</item>   <!--##BRAND#-->
40    <item>##258#</item>     <!--##BLV#-->
41    <item>##8422#</item>    <!--##UICC#-->
42    <item>##4382#</item>    <!--CMAS/WEA-->
43  </string-array>
44
45  <string name="motorola_hidden_menu_intent">com.motorola.intent.action.LAUNCH_HIDDEN_MENU</string>
46
47  <!-- This defines the intents that will be send out when the key sequence is matched, this must be
48       in the same order with he KeySequence array. -->
49  <string-array name="motorola_hidden_menu_key_sequence_intents">
50    <item>@string/motorola_hidden_menu_intent</item>
51    <item>@string/motorola_hidden_menu_intent</item>
52    <item>@string/motorola_hidden_menu_intent</item>
53    <item>@string/motorola_hidden_menu_intent</item>
54    <item>@string/motorola_hidden_menu_intent</item>
55    <item>@string/motorola_hidden_menu_intent</item>
56    <item>@string/motorola_hidden_menu_intent</item>
57    <item>@string/motorola_hidden_menu_intent</item>
58    <item>@string/motorola_hidden_menu_intent</item>
59    <item>com.motorola.android.intent.action.omadm.sprint.hfa</item>
60    <item>@string/motorola_hidden_menu_intent</item>
61    <item>@string/motorola_hidden_menu_intent</item>
62    <item>@string/motorola_hidden_menu_intent</item>
63    <item>@string/motorola_hidden_menu_intent</item>
64    <item>@string/motorola_hidden_menu_intent</item>
65  </string-array>
66
67  <!-- This defines the specific key patterns that will be caught in the SpecialCharSequenceMgr
68       such as, ##[0-9]{3,7}# -->
69  <string-array name="motorola_hidden_menu_key_pattern">
70    <!--##MSL#, here MSL is 6 digits SPC code, ##OTKSL#, OTKSL is also digits code -->
71    <item>##[0-9]{6}#</item>
72  </string-array>
73
74  <!-- This defines the intents that will be send out when the key sequence is matched, this must be
75     in the same order with he KeyPattern array. -->
76  <string-array name="motorola_hidden_menu_key_pattern_intents">
77    <item>@string/motorola_hidden_menu_intent</item>
78  </string-array>
79
80  <!-- This defines the provider names for cequint callerid applications
81       used for different carriers-->
82  <string-array name="cequint_providers">
83    <item>com.cequint.ecid</item>
84    <item>com.vzw.ecid</item>
85  </string-array>
86
87  <!-- Flag to control whether to disable phone number formatting -->
88  <bool name="motorola_disable_phone_number_formatting">false</bool>
89</resources>
90