diff options
| -rw-r--r-- | core/res/res/values/config.xml | 3 | ||||
| -rw-r--r-- | core/res/res/values/symbols.xml | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml index 16d1d1a9b90a..1a2130697daf 100644 --- a/core/res/res/values/config.xml +++ b/core/res/res/values/config.xml @@ -530,6 +530,9 @@ <!-- Boolean indicating whether the wifi chipset has dual frequency band support --> <bool translatable="false" name="config_wifi_dual_band_support">false</bool> + <!-- Maximum number of concurrent WiFi interfaces in AP mode --> + <integer translatable="false" name="config_wifi_max_ap_interfaces">1</integer> + <!-- Boolean indicating whether the wifi chipset requires the softap band be --> <!-- converted from 5GHz to ANY due to hardware restrictions --> <bool translatable="false" name="config_wifi_convert_apband_5ghz_to_any">false</bool> diff --git a/core/res/res/values/symbols.xml b/core/res/res/values/symbols.xml index 751721860441..83982c77f8b5 100644 --- a/core/res/res/values/symbols.xml +++ b/core/res/res/values/symbols.xml @@ -1879,6 +1879,7 @@ <java-symbol type="bool" name="config_supportLongPressPowerWhenNonInteractive" /> <java-symbol type="bool" name="config_wifi_background_scan_support" /> <java-symbol type="bool" name="config_wifi_dual_band_support" /> + <java-symbol type="integer" name="config_wifi_max_ap_interfaces" /> <java-symbol type="bool" name="config_wifi_convert_apband_5ghz_to_any" /> <java-symbol type="bool" name="config_wifi_local_only_hotspot_5ghz" /> <java-symbol type="bool" name="config_wifi_connected_mac_randomization_supported" /> |