1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2017 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<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
17
18  <Preference
19    android:key="@string/vvm_config_override_load_current_key"
20    android:title="Load current"/>
21
22  <SwitchPreference
23      android:key="@string/vvm_config_override_enabled_key"
24      android:title="Override enabled"
25      android:defaultValue="false"/>
26
27  <!-- Keys should be a key in CarrierConfigManager prefixed with "vvm_config_override_key_" -->
28  <EditTextPreference
29    android:key="vvm_config_override_key_vvm_type_string"
30      android:title="type"
31      android:defaultValue="vvm_type_omtp"
32    />
33
34  <EditTextPreference
35      android:key="vvm_config_override_key_vvm_destination_number_string"
36      android:title="destination number"
37      />
38
39  <EditTextPreference
40      android:key="vvm_config_override_key_vvm_port_number_int"
41      android:title="destination port"
42      />
43  <EditTextPreference
44      android:key="vvm_config_override_key_carrier_vvm_package_name_string_array"
45      android:title="vvm package name (CSV)"
46      />
47
48  <SwitchPreference
49      android:key="vvm_config_override_key_vvm_prefetch_bool"
50      android:title="prefetch"
51      android:defaultValue="true"/>
52
53  <SwitchPreference
54      android:key="vvm_config_override_key_vvm_cellular_data_required_bool"
55      android:title="cellular data required"
56      android:defaultValue="false"/>
57  <EditTextPreference
58      android:key="vvm_config_override_key_vvm_ssl_port_number_int"
59      android:title="SSL port"
60      />
61
62  <SwitchPreference
63      android:key="vvm_config_override_key_vvm_legacy_mode_enabled_bool"
64      android:title="legacy mode"
65      android:defaultValue="false"/>
66
67  <EditTextPreference
68      android:key="vvm_config_override_key_vvm_disabled_capabilities_string_array"
69      android:title="disabled capabilities (CSV)"
70      />
71
72  <EditTextPreference
73      android:key="vvm_config_override_key_vvm_client_prefix_string"
74      android:title="client prefix"
75      />
76</PreferenceScreen>