Android:安卓工具与资讯
系统资讯
安卓调试桥
使用命令
# 启动adb服务
adb start-server
# 结束adb服务
adb kill-server
#####
# 授权配对
adb pair 网络地址:端口
# 建立连接
adb connect 网络地址:端口
# 断开连接
adb disconnect 网络地址:端口
# 已连接设备列表
adb devices
#####
# 安装程序
adb install 安装包目录
#####
# 卸载小米电视桌面
adb shell pm uninstall --user 0 com.mitv.tvhome
# 卸载小米电视应用商店
adb shell pm uninstall --user 0 com.xiaomi.mitv.appstore
# 卸载小米电视系统升级
adb shell pm uninstall --user 0 com.xiaomi.mitv.upgrade
# 卸载小米电视广告插件
adb shell pm uninstall --user 0 com.miui.systemAdSolution