summaryrefslogtreecommitdiff
path: root/java/com/android/voicemail/impl/configui/res/xml/vvm_config_override.xml
blob: c4a23c789be04b80e9f72ff52377925304dca742 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2017 The Android Open Source Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">

  <Preference
    android:key="@string/vvm_config_override_load_current_key"
    android:title="Load current"/>

  <SwitchPreference
      android:key="@string/vvm_config_override_enabled_key"
      android:title="Override enabled"
      android:defaultValue="false"/>

  <!-- Keys should be a key in CarrierConfigManager prefixed with "vvm_config_override_key_" -->
  <EditTextPreference
    android:key="vvm_config_override_key_vvm_type_string"
      android:title="type"
      android:defaultValue="vvm_type_omtp"
    />

  <EditTextPreference
      android:key="vvm_config_override_key_vvm_destination_number_string"
      android:title="destination number"
      />

  <EditTextPreference
      android:key="vvm_config_override_key_vvm_port_number_int"
      android:title="destination port"
      />
  <EditTextPreference
      android:key="vvm_config_override_key_carrier_vvm_package_name_string_array"
      android:title="vvm package name (CSV)"
      />

  <SwitchPreference
      android:key="vvm_config_override_key_vvm_prefetch_bool"
      android:title="prefetch"
      android:defaultValue="true"/>

  <SwitchPreference
      android:key="vvm_config_override_key_vvm_cellular_data_required_bool"
      android:title="cellular data required"
      android:defaultValue="false"/>
  <EditTextPreference
      android:key="vvm_config_override_key_vvm_ssl_port_number_int"
      android:title="SSL port"
      />

  <SwitchPreference
      android:key="vvm_config_override_key_vvm_legacy_mode_enabled_bool"
      android:title="legacy mode"
      android:defaultValue="false"/>

  <EditTextPreference
      android:key="vvm_config_override_key_vvm_disabled_capabilities_string_array"
      android:title="disabled capabilities (CSV)"
      />

  <EditTextPreference
      android:key="vvm_config_override_key_vvm_client_prefix_string"
      android:title="client prefix"
      />
</PreferenceScreen>