如何在 AOSP 中启用 "Hotspot & tethering" 设置应用程序的构建?

How to enable the building of the "Hotspot & tethering" settings app in AOSP?

我的 Android 10 设备有一个 AOSP 版本。

'Network & internet' UI 缺少 'Hotspot & tethering' 设置应用程序。 (Wifi 正在工作,但仅作为上行接口。)

AOSP 中的哪个文件控制 'Hotspot & tethering' 设置应用程序是否包含在构建中?

答案是将下面的 <item> 行添加到 ./frameworks/base/core/res/res/values/config.xml

<!-- List of regexpressions describing the interface (if any) that represent tetherable
     Wifi interfaces.  If the device doesn't want to support tethering over Wifi this
     should be empty.  An example would be "softap.*" -->
<string-array translatable="false" name="config_tether_wifi_regexs">
    <item>"softap.*"</item>
</string-array>