config.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. Copyright (C) 2024 The LineageOS Project
  4. SPDX-License-Identifier: Apache-2.0
  5. -->
  6. <resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
  7. <!-- boolean indicating whether the WiFi chipset has 5GHz band support.
  8. Note: This config is replacing the config_wifi_dual_band_support
  9. since more bands may now be supported (such as 6GHz), the naming dual_band
  10. is no longer indicative, and a separate config now exists for each band -->
  11. <bool name="config_wifi5ghzSupport" translatable="false">true</bool>
  12. <!-- boolean indicating whether or not to auto-upgrade band setting configuration to dual bands during cloud configuration restore when device supported -->
  13. <bool name="config_wifiSoftapAutoUpgradeToBridgedConfigWhenSupported" translatable="false">false</bool>
  14. <!-- Boolean indicating whether the wifi chipset supports background scanning mechanism.
  15. This mechanism allows the host to remain in suspend state and the dongle to actively
  16. scan and wake the host when a configured SSID is detected by the dongle. This chipset
  17. capability can provide power savings when wifi needs to be always kept on. -->
  18. <bool name="config_wifi_background_scan_support" translatable="false">true</bool>
  19. <!-- Integer indicating maximum hardware supported client number of soft ap -->
  20. <integer name="config_wifiHardwareSoftapMaxClientCount" translatable="false">32</integer>
  21. <!-- List of allowed channels in 2GHz band for softap. If the device doesn't want to restrict
  22. channels this should be empty. Values is a comma separated channel string and/or channel
  23. range string like '1-6,11'. -->
  24. <string name="config_wifiSoftap2gChannelList" translatable="false" />
  25. <!-- List of allowed channels in 5GHz band for softap. If the device doesn't want to restrict
  26. channels this should be empty. Values is a comma separated channel string and/or channel
  27. range string like '36-48,149'. -->
  28. <string name="config_wifiSoftap5gChannelList" translatable="false" />
  29. <!-- List of allowed channels in 6GHz band for softap. If the device doesn't want to restrict
  30. channels this should be empty. Values is a comma separated channel string and/or channel
  31. range string like '36-48,149'. -->
  32. <string name="config_wifiSoftap6gChannelList" translatable="false" />
  33. <!-- Boolean indicating that only configurations that have the same pre-shared key will be linked -->
  34. <bool name="config_wifi_only_link_same_credential_configurations" translatable="false">false</bool>
  35. <!-- Wifi driver supports Automatic channel selection (ACS) for softap -->
  36. <bool name="config_wifi_softap_acs_supported" translatable="false">true</bool>
  37. <!-- Wifi driver supports WPA3 Simultaneous Authentication of Equals (WPA3-SAE) for softap -->
  38. <bool name="config_wifi_softap_sae_supported" translatable="false">true</bool>
  39. <!-- Wifi driver supports IEEE80211AC for softap -->
  40. <bool name="config_wifi_softap_ieee80211ac_supported" translatable="false">true</bool>
  41. <!-- Wifi driver supports 6GHz band for softap when chip support 6GHz -->
  42. <bool name="config_wifiSoftap6ghzSupported" translatable="false">true</bool>
  43. <!-- Indicates that connected MAC randomization is supported on this device -->
  44. <bool name="config_wifi_connected_mac_randomization_supported" translatable="false">true</bool>
  45. <!-- Indicates that p2p MAC randomization is supported on this device -->
  46. <bool name="config_wifi_p2p_mac_randomization_supported" translatable="false">true</bool>
  47. <!-- Wifi driver Automatic channel selection (ACS) for softap to include DFS channels -->
  48. <bool name="config_wifiSoftapAcsIncludeDfs" translatable="false">true</bool>
  49. <!-- integer indicating additional disconnect delay (in ms) after IMS onLost() indication is received -->
  50. <integer name="config_wifiDelayDisconnectOnImsLostMs" translatable="false">1000</integer>
  51. <!-- Enable Aware NDP interface selection on interface that already has network set up.
  52. Note: the default AOSP Android does not support multiple networks on the same Aware NDI.
  53. Enabling this configuration will restore legacy behavior but may result in incorrect behavior.
  54. -->
  55. <bool name="config_wifiAllowMultipleNetworksOnSameAwareNdi" translatable="false">true</bool>
  56. </resources>