原生安卓解决WiFi网络受限以及修改NTP服务器

一. 解决网络受限

1. 通过ADB命令的方式

先删除默认的地址:

adb shell settings delete global captive_portal_https_url
adb shell settings delete global captive_portal_http_url

再修改新的地址:

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

ADB工具下载地址:https://vei7i.lanzous.com/i9tb9g282ib

2. 其他方式

已经 ROOT 的手机利用 Magisk、Captivemgr 等工具修改。
具体参照:https://www.xiaoyi.vc/captive-portal.html

二. 修改NTP服务器

执行命令后重启手机:

adb shell setprop persist.sys.timezone Asia/Shanghai
adb shell settings put global ntp_server ntp1.aliyun.com

参考:https://zhuanlan.zhihu.com/p/145266379

你可能感兴趣的:(原生安卓解决WiFi网络受限以及修改NTP服务器)