Android去掉WIFI感叹号的方法

来源:https://www.noisyfox.cn/45.html

1. 用国内的服务器example.com替换掉google的服务器clients3.google.com,可以用IP,只能http
adb shell "settings put global captive_portal_server example.com"

2. 恢复方法
adb shell "settings delete global captive_portal_server"

3. 在自己的服务器example.com加一个访问generate_204返回204的指令,nginx方法:
location /generate_204 { return 204; }

访问http://example.com/generate_204应该得到204的结果。

Tags:

Leave a Reply


提醒: 评论者允许使用'@user空格'的方式将自己的评论通知另外评论者。例如, ABC是本文的评论者之一,则使用'@ABC '(不包括单引号)将会自动将您的评论发送给ABC。请务必注意user必须和评论者名相匹配(大小写一致)。