Emotn桌面下载地址:https://app.emotn.com/ui/
FLauncher下载地址:https://gitlab.com/flauncher/flauncher
https://play.google.com/store/apps/details?id=me.efesser.flauncher
ADB工具下载地址:https://developer.android.com/studio/releases/platform-tools
首先要安装EmotnUI,然后在禁止小米桌面。
控制盒子进入开发者模式:
使用 adb connect 盒子ip 连接盒子,一般盒子会显示确认选项,遥控器确认。
使用 adb devices 查看连接设备。
连接之后输入:
# 禁用原系统桌面命令
adb shell pm disable-user --user 0 com.google.android.tvlauncher
wifi网络受限解决办法:
修改新的检测地址:
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 shell settings put global ntp_server ntp.aliyun.com
adb shell service call alarm 3 s16 Asia/Shanghai
重启手机或盒子就OK了。
最后要恢复默认地址的命令:
adb shell settings delete global captive_portal_https_url
adb shell settings delete global captive_portal_http_url
adb shell settings delete global ntp_server