安卓原生电视盒子首次激活连不上wifi?
软路由里把time.android.com劫持到 203.107.6.88(阿里云的ntp服务器)就能解决原生安卓时间不对的问题 了
OpenWRT
具体步骤:openwrt—网络----dhcp/dns----host和解析文件拉到最下边----自定义挟持域名或者自定义dns解析
因为我只有openwrt 其他路由器参考最底下的链接

通过ADB修改 ntp 服务器地址 同步Google TV网络时间

adb 工具包地址 github下载地址
https://github.com/ligl0702/Pan/releases/tag/ADB

采用无线adb方式 无需连接数据线 只要保证在同一个局域网即可
1、打开adb设置-系统-关于-连续点击4次 Android TV操作系统版本,此时回到系统就有开发者选项-勾选USB调试

2、连接adb(下载adb工具包-位于网盘) 如果有弹框 请点击确定按钮,如果没有弹框,请检查开发者模式下的USB调试模式是否打开,也可以反复开启和关闭USB调试按钮的开关,还可以点击下方的撤销调试模式的授权,ADB这个功能在android底层本身还是有一些bug的,需要是反复开启和关闭,直到你输入
adb shell 回车之后,能成功进入命令行模式,才算是真正的连接成功。退出命令行模式用exit回车

adb 链接

 adb connect 192.168.xx.xx

通过adb写入新的ntp服务器地址

adb shell settings put global ntp_server ntp3.aliyun.com 
adb shell pm disable-user --user 0 com.google.android.apps.tv.launcherx
adb shell pm disable-user --user 0 com.google.android.tungsten.setupwraith

正常情况下 已经是ok了

如果你没有使用软路由,而是在电视盒子里使用了代理软件比如clash或者其他 软件,那么你会发现,即便修改了时间服务器地址,每次重启盒子,首先是wifi并不会自动连接,其次就算连接也还是会提示网络受限。这是因为Android原生电视盒子的联网原理导致的,源码中有一个叫做isCaptivePortal() 的函数,用来检查网络状况的判断,它需要一个返回值http 204 (空内容的意思)的网址,源码里默认使用 clients3.google.com/generate_204 这个网址,很显然这个网址,你若没用代理是访问不到的。因此安卓就没法正确判断当前的网络状态,所以要想解决此问题,需要我们换成一个能在国内直接访问的,用于返回http 204的网址。我们姑且把它叫做 验证服务器 吧。目前已经有很多公司制作了这样的验证服务器。

小米: connect.rom.miui.com/generate_204
华为: connectivitycheck.platform.hicloud.com/generate_204
Vivo: wifi.vivo.com.cn/generate_204

具体操作方法

# 打开网络验
//如果你是Android 11.0 以上的电视盒子(还比较少)
adb shell settings put global captive_portal_mode 1

//Android 10.0 以下的电视盒子(比较多)
adb shell settings put global captive_portal_detection_enabled 1

# 设置一个返回204 空内容的服务器
adb shell settings put global captive_portal_use_https 0
adb shell settings put global captive_portal_http_url http://connect.rom.miui.com/generate_204

如何查看设置的参数?

adb shell settings list global

如何恢复原来的参数

# 使用默认,即删除配置
adb shell settings delete global captive_portal_http_url
adb shell settings delete global captive_portal_https_url

4、重启Google TV后生效
重启命令

adb reboot

禁用本地桌面 启用

安装 emotnUI桌面

禁用本地桌面前保证要有一个桌面系统

使用adb链接
adb 链接

 adb connect 192.168.xx.xx
adb shell pm disable-user --user 0 com.google.android.apps.tv.launcherx
adb shell pm disable-user --user 0 com.google.android.tungsten.setupwraith

参考链接
https://didiboy0702.gitbook.io/wukongdaily/new-shou-ye/gao-pin-ti-wen

12-06 02:57