1<?xml version="1.0" encoding="utf-8"?>
2<!--
3    Copyright 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    <!-- Security types for wireless tether -->
20    <string-array name="wifi_tether_security">
21        <item>@string/wifi_hotspot_wpa3_sae</item>
22        <item>@string/wifi_security_psk_sae</item>
23        <item>@string/wifi_hotspot_wpa2_personal</item>
24        <item>@string/wifi_hotspot_security_none</item>
25    </string-array>
26
27    <!-- Values for security type for wireless tether -->
28    <string-array name="wifi_tether_security_values" translatable="false">
29        <item>3</item>
30        <item>2</item>
31        <item>1</item>
32        <item>0</item>
33    </string-array>
34
35    <!-- Wi-Fi AP band settings.  Either Auto, 2.4GHz or 5GHz. -->
36    <!-- Note that adding/removing/moving the items will need wifi settings code change. -->
37    <string-array translatable="false" name="wifi_ap_band_config_full">
38        <item>1</item>
39        <item>2</item>
40    </string-array>
41
42    <string-array translatable="false" name="wifi_ap_band_summary_full">
43        <item>@string/wifi_ap_choose_2G</item>
44        <item>@string/wifi_ap_choose_5G</item>
45    </string-array>
46
47    <string-array translatable="false" name="wifi_ap_band">
48        <item>1</item>
49        <item>2</item>
50        <item>3</item>
51    </string-array>
52
53    <string-array translatable="false" name="wifi_ap_band_summary">
54        <item>@string/wifi_ap_choose_2G</item>
55        <item>@string/wifi_ap_prefer_5G</item>
56        <item>@string/wifi_ap_2G_5G</item>
57    </string-array>
58
59    <string-array translatable="false" name="wifi_ap_band_config_2G_only">
60        <item>@string/wifi_ap_choose_auto</item>
61        <item>@string/wifi_ap_choose_2G</item>
62    </string-array>
63
64    <string-array translatable="false" name="recent_apps_ignored_packages">
65        <item>android</item>
66        <item>com.android.phone</item>
67        <item>com.android.settings</item>
68        <item>com.android.car.settings</item>
69        <item>com.android.systemui</item>
70        <item>com.android.providers.calendar</item>
71        <item>com.android.providers.media</item>
72        <item>com.google.android.cellbroadcastreceiver</item>
73        <item>com.google.android.cellbroadcast</item>
74        <item>com.android.cellbroadcastreceiver</item>
75    </string-array>
76</resources>
77