123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <?xml version="1.0" encoding="utf-8"?>
- <!--
- Copyright (C) 2024 The LineageOS Project
- SPDX-License-Identifier: Apache-2.0
- -->
- <resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
- <!-- boolean indicating whether the WiFi chipset has 5GHz band support.
- Note: This config is replacing the config_wifi_dual_band_support
- since more bands may now be supported (such as 6GHz), the naming dual_band
- is no longer indicative, and a separate config now exists for each band -->
- <bool name="config_wifi5ghzSupport" translatable="false">true</bool>
- <!-- boolean indicating whether or not to auto-upgrade band setting configuration to dual bands during cloud configuration restore when device supported -->
- <bool name="config_wifiSoftapAutoUpgradeToBridgedConfigWhenSupported" translatable="false">false</bool>
- <!-- Boolean indicating whether the wifi chipset supports background scanning mechanism.
- This mechanism allows the host to remain in suspend state and the dongle to actively
- scan and wake the host when a configured SSID is detected by the dongle. This chipset
- capability can provide power savings when wifi needs to be always kept on. -->
- <bool name="config_wifi_background_scan_support" translatable="false">true</bool>
- <!-- Integer indicating maximum hardware supported client number of soft ap -->
- <integer name="config_wifiHardwareSoftapMaxClientCount" translatable="false">32</integer>
- <!-- List of allowed channels in 2GHz band for softap. If the device doesn't want to restrict
- channels this should be empty. Values is a comma separated channel string and/or channel
- range string like '1-6,11'. -->
- <string name="config_wifiSoftap2gChannelList" translatable="false" />
- <!-- List of allowed channels in 5GHz band for softap. If the device doesn't want to restrict
- channels this should be empty. Values is a comma separated channel string and/or channel
- range string like '36-48,149'. -->
- <string name="config_wifiSoftap5gChannelList" translatable="false" />
- <!-- List of allowed channels in 6GHz band for softap. If the device doesn't want to restrict
- channels this should be empty. Values is a comma separated channel string and/or channel
- range string like '36-48,149'. -->
- <string name="config_wifiSoftap6gChannelList" translatable="false" />
- <!-- Boolean indicating that only configurations that have the same pre-shared key will be linked -->
- <bool name="config_wifi_only_link_same_credential_configurations" translatable="false">false</bool>
- <!-- Wifi driver supports Automatic channel selection (ACS) for softap -->
- <bool name="config_wifi_softap_acs_supported" translatable="false">true</bool>
- <!-- Wifi driver supports WPA3 Simultaneous Authentication of Equals (WPA3-SAE) for softap -->
- <bool name="config_wifi_softap_sae_supported" translatable="false">true</bool>
- <!-- Wifi driver supports IEEE80211AC for softap -->
- <bool name="config_wifi_softap_ieee80211ac_supported" translatable="false">true</bool>
- <!-- Wifi driver supports 6GHz band for softap when chip support 6GHz -->
- <bool name="config_wifiSoftap6ghzSupported" translatable="false">true</bool>
- <!-- Indicates that connected MAC randomization is supported on this device -->
- <bool name="config_wifi_connected_mac_randomization_supported" translatable="false">true</bool>
- <!-- Indicates that p2p MAC randomization is supported on this device -->
- <bool name="config_wifi_p2p_mac_randomization_supported" translatable="false">true</bool>
- <!-- Wifi driver Automatic channel selection (ACS) for softap to include DFS channels -->
- <bool name="config_wifiSoftapAcsIncludeDfs" translatable="false">true</bool>
- <!-- integer indicating additional disconnect delay (in ms) after IMS onLost() indication is received -->
- <integer name="config_wifiDelayDisconnectOnImsLostMs" translatable="false">1000</integer>
- <!-- Enable Aware NDP interface selection on interface that already has network set up.
- Note: the default AOSP Android does not support multiple networks on the same Aware NDI.
- Enabling this configuration will restore legacy behavior but may result in incorrect behavior.
- -->
- <bool name="config_wifiAllowMultipleNetworksOnSameAwareNdi" translatable="false">true</bool>
- <!-- A boolean indicate if device supports ser channel on the Aware data-path setup. If the
- value is false, channel setting on the data-path request will be ignored.
- -->
- <bool name="config_wifiSupportChannelOnDataPath" translatable="false">true</bool>
- <!-- Integer threshold for max number of WifiConfigurations that can be saved on the device.
- A value of -1 indicates no limit. If a max number is specified, then under-used configs will
- be deleted to make room for new configs.-->
- <integer name="config_wifiMaxNumWifiConfigurations" translatable="false">1000</integer>
- <!-- Indicates whether or not the WLAN driver supports the NL80211_CMD_REG_CHANGE or
- NL80211_CMD_WIPHY_REG_CHANGE events which indicate the current country code which is
- being used by the WLAN driver. If the driver doesn't support these events
- (configuration is `false`) then the driver must handle the setCountryCode request from
- HAL as a blocking call. In such a case the country code will be applied
- immediately after the country code is sent to the driver (if the method returns a
- success). -->
- <bool name="config_wifiDriverSupportedNl80211RegChangedEvent" translatable="false">true</bool>
- <!-- Wifi driver supports Opportunistic Wireless Encryption (OWE) Transition
- aka Enhanced Open for Soft-AP -->
- <bool name="config_wifiSoftapOweTransitionSupported" translatable="false">true</bool>
- <!-- Wifi driver supports Opportunistic Wireless Encryption (OWE)
- aka Enhanced Open for Soft-AP -->
- <bool name="config_wifiSoftapOweSupported" translatable="false">true</bool>
- <!-- Lists each alternate character set per locale language for SSID translation to UTF-8. This
- will translate all SSIDs encoded with the specified character set from the native layer
- into UTF-8 SSIDs. The translated SSIDs are then converted back to the original character
- set when passed back to the native layer. This effectively switches all non-UTF-8 APs into
- UTF-8 APs from the perspective of the framework and apps, and is intended to provide
- backwards compatibility with apps that only work with UTF-8 SSIDs. Values must be in the
- form of the locale language and canonical java.nio Charset name, separated by a comma. If
- the locale language is "all", then the character set will apply to all locale languages
- that do not specify their own character set. -->
- <string-array name="config_wifiCharsetsForSsidTranslation" translatable="false">
- <item>zh,GBK</item>
- </string-array>
- </resources>
|