关于 android 5.0 网络图标上的感叹号及其解决办法 - 狐狸的小小窝 - https://www.noisyfox.cn/45.html
www.google.cn
这个会完全屏蔽网络检查功能,会导致需要登录的WiFi无法提示登录。用settings put global captive_portal_server www.google.cn
替换Google服务器更好。XX.XX为替换的服务器
关于 android 5.0 网络图标上的感叹号及其解决办法
收到2条评论
ZephyrXT 2020-10-31 08:59
# 查看所有配置
adb shell settings list global
# 使用https
adb shell settings put global captive_portal_https_url xxxxx
# 使用http
adb shell settings put global captive_portal_use_https 0
adb shell settings put global captive_portal_http_url xxxxx
# 使用默认,即删除配置
adb shell settings delete global captive_portal_http_url
adb shell settings delete global captive_portal_https_url
adb shell settings list global
# 使用https
adb shell settings put global captive_portal_https_url xxxxx
# 使用http
adb shell settings put global captive_portal_use_https 0
adb shell settings put global captive_portal_http_url xxxxx
# 使用默认,即删除配置
adb shell settings delete global captive_portal_http_url
adb shell settings delete global captive_portal_https_url
ZephyrXT 2020-01-31 10:26
adb shell settings put global captive_portal_https_url https://www.google.cn/generate_204