如何消除原生Android原生网络连接显示x或者惊叹号

来源:互联网 发布:java计算器程序 编辑:程序博客网 时间:2024/05/01 12:42

Android 7及之后的版本输入如下两个命令:
adb shell “settings put global captive_portal_http_url http://www.google.cn/generate_204”
adb shell “settings put global captive_portal_https_url https://www.google.cn/generate_204”

7之前的版本运行如下的命令:
adb shell “settings put global captive_portal_serverhttp://www.google.cn/generate_204”

可以输入如下命令, 禁止检测网络连接状态.
adb shell settings put global captive_portal_detection_enabled 1

可以输入如下的命令查看所支持的所有选项:
adb shell settings –user current list global

原创粉丝点击