Android 去掉信号图标右下角叉号

每次重刷机都要查一下去掉信号图标叉号的命令,一直记不住,这次贴上来存着。

在开发者设置里开启 ADB 的 root 权限。

Android 7.1 :

1
2
adb root
adb shell settings put global captive_portal_https_url https://www.google.cn/generate_204

Android 8.1 :

1
2
3
4
adb root
adb shell setenforce 0
adb shell settings put global captive_portal_https_url https://www.google.cn/generate_204
adb shell setenforce 1

也可以:

1
2
3
4
5
6
7
adb shell
su
setenforce 0
settings put global captive_portal_https_url https://www.google.cn/generate_204
setenforce 1
exit
exit
Mastodon