adb 工具使用方法
作者:互联网
注:
adb kill-server //结束adb服务连接
adb start-server //启动adb服务
1.设置电视盒子时区为中国标准时间
2.设置开发模式开启,关于最后,一直按确认键,然后打开USB功能(否则电脑连不上电视盒子)
// 创建与xxx的设备连接
adb connect 192.168.48.xxx
// 获取adb设备列表
adb devices
// 安装apk包到电视盒子
adb install D:\apps\tv_adb.apk
// 解决安卓tv原版 网络受限
删除
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 shell settings get global time_zone
adb shell settings put global time_zone Asia/Shanghai
adb shell settings put global ntp_server ntp1.aliyun.com
标签:shell,settings,global,adb,put,portal,工具,方法 来源: https://www.cnblogs.com/yangzp/p/16378014.html