TCL电视免root 下载预装应用,解锁安装权限

电视Android8.0系统,很多root方法失效,就用adb来实现。
特别声明adb不止Windows系统,mac 也可以装的具体可以自己百度

//TCL遥控器不带按键的打开adb调试
设置 ->系统信息 -> 上下左右
//查看ip
设置 ->网络 -> 无线网络-> 点击链接的无线网络 
// 开启安装应用
adb connect 192.168.xxx.xxx
//开启安装应用权限,不用再装那个电视卫视,或者欢视助手了
adb shell setprop persist.tcl.installapk.enable 1
adb shell setprop persist.tcl.debug.installapk 1
// 卸载预装,放在一起可以批量复制执行
// 包含艺生活、T商店、qq音乐、啥教育、自带的影视、使用说明
// 游戏中心、消息盒子、天气、微信互联、无线互联、应用商店、汇影视
adb shell pm uninstall --user 0 com.tcl.appreciate.art
adb shell pm uninstall --user 0 com.tcl.tshop
adb shell pm uninstall --user 0 com.tencent.qqmusictv
adb shell pm uninstall --user 0 com.golive.cinema
adb shell pm uninstall --user 0 com.huan.edu.lexue.frontend
adb shell pm uninstall --user 0 com.tcl.gamecenter
adb shell pm uninstall --user 0 com.android.tcl.messagebox
adb shell pm uninstall --user 0 com.tcl.common.weather
adb shell pm uninstall --user 0 com.audiocn.kalaok.tv
adb shell pm uninstall --user 0 com.tcl.weixin
adb shell pm uninstall --user 0 com.tcl.SmartTVHelp
adb shell pm uninstall --user 0 com.tcl.appmarket2
adb shell pm uninstall --user 0 com.tcl.selfbuy
adb shell pm uninstall --user 0 com.android.wfdsink

// 王牌频道
adb shell pm uninstall --user 0 com.tcl.tliveplay
// 查看当前运行的应用,输出的信息包含u0的(u0_* 代表用户组的)
adb shell ps | grep u0
// 查看已安装的应用
adb shell pm list package 
// 查看正在运行的包含某个应用不,主要用来排查应用对应的id
pidof com.tcl.appmarket2
// 调试用
adb shell dumpsys activity

你可能感兴趣的:(TCL电视免root 下载预装应用,解锁安装权限)