admin管理员组

文章数量:1561464

自 Android 5.0 起,谷歌引入了Captive Portal的机制,用于检测 WiFi网络认证是否正常。由于众所周知的原因,我们在中国大陆并无法访问谷歌的网络,这在某些情况下会导致一些问题,例如:在中国大陆使用一些类原生的ROM时,会提示Wifi连接正常,但无法访问互联网

我们可以通过打开USB调试,并执行以下命令来修复这个问题。

adb shell settings put global captive_portal_http_url http://api.hestudio/generate_204
adb shell settings put global captive_portal_https_url https://api.hestudio/generate_204

详细解释:
我们通过替换captive_portal_http_urlcaptive_portal_https_url的值,来修复这个问题。我们将captive_portal_http_urlcaptive_portal_https_url更换为我们自己的API,当然你也可以更换成其他的服务。

# MIUI
adb shell settings put global captive_portal_http_url http://connect.rom.miui/generate_204
adb shell settings put global captive_portal_https_url https://connect.rom.miui/generate_204

本文标签: 系统AOSPandroidwifi