android tv no ad desktop

1. TV xiaomi tv, too many ad and boring destktop. 小米电视去广告及更换第三方桌面操作方法 – MIUI历史版本

2. com.yanggqi.rom.launcher.free.apk. 

3. ADB :

注意, adb connect 192.168.0.50 ,无法认证时,要把电视界面返回到上一级才能看到那个确认指纹的对话框。
adb kill-server

adb shell ls /system/app/
adb shell am start 
//注意,这步似乎是启动 . but not 设置开机
  .\adb shell am start com.yangqi.rom.launcher.free
D:\Downloads\platform-tools_r31.0.3-windows\platform-tools>adb shell am start com.yangqi.rom.launcher.free
Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] pkg=com.yangqi.rom.launcher.free }

用电脑浏览器启动电视中的应用:
http://192.168.0.50:6095/controller?action=startapp&&type=packagename&packagename=com.yangqi.rom.launcher.free

To delete boring app:

D:\Downloads\platform-tools_r31.0.3-windows\platform-tools>adb shell pm uninstall --user 0 com.duokan.videodaily
Success

D:\Downloads\platform-tools_r31.0.3-windows\platform-tools>adb shell pm uninstall --user 0 com.xiaomi.mitv.appstore
Success

D:\Downloads\platform-tools_r31.0.3-windows\platform-tools>adb shell pm uninstall --user 0 com.xiaomi.mibox.gamecenter
Success

D:\Downloads\platform-tools_r31.0.3-windows\platform-tools>adb shell pm uninstall --user 0 com.xiaomi.smarthome.tv
Success

D:\Downloads\platform-tools_r31.0.3-windows\platform-tools>adb shell pm uninstall --user 0 com.xiaomi.mibox.lockscreen
Success

D:\Downloads\platform-tools_r31.0.3-windows\platform-tools>adb shell pm uninstall --user 0 com.xiaomi.mitv.payment
Success

D:\Downloads\platform-tools_r31.0.3-windows\platform-tools>adb shell pm uninstall --user 0 com.xiaomi.mitv.pay
Success

D:\Downloads\platform-tools_r31.0.3-windows\platform-tools>adb shell pm uninstall --user 0 com.xiaomi.mitv.upgrade
Success

D:\Downloads\platform-tools_r31.0.3-windows\platform-tools>adb shell pm uninstall --user 0 com.xiaomi.mitv.shop
Success

D:\Downloads\platform-tools_r31.0.3-windows\platform-tools>adb shell pm uninstall --user 0 com.xiaomi.mitv.tvpush.tvpushservice
Success

D:\Downloads\platform-tools_r31.0.3-windows\platform-tools>adb shell pm uninstall --user 0 com.mipay.wallet.tv
Success

D:\Downloads\platform-tools_r31.0.3-windows\platform-tools>adb shell pm uninstall --user 0 com.mipay.wallet.tv
Success

D:\Downloads\platform-tools_r31.0.3-windows\platform-tools>adb shell pm uninstall --user 0 com.xiaomi.mitv.karaoke.service
Success

D:\Downloads\platform-tools_r31.0.3-windows\platform-tools>adb shell pm uninstall --user 0 com.xiaomi.gamecenter.sdk.service.mibox
Success

D:\Downloads\platform-tools_r31.0.3-windows\platform-tools>adb shell pm uninstall --user 0 com.miui.systemAdSolution
Success

D:\Downloads\platform-tools_r31.0.3-windows\platform-tools>adb shell pm uninstall --user 0 com.xiaomi.tv.gallery
Success

 .\adb connect 盒子ip:30016 adb连接盒子
  .\adb shell mount -o remount,rw /system 挂载系统可写
  .\adb push dbzm.apk /system/app 安装到system目录里恢复出厂设置不丢失当贝桌面(记得步骤2的把dbzm.apk放在解压后的adb目录下)
  .\adb shell rm /system/app/UMAuth* 删除认证组件
 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/229940.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Web前端-CSS(文本样式)

文章目录 1.font字体1.1 font-size:大小1.2 font-family:字体1.3 font-weight:字体粗细1.4 font-style:字体风格1.5 font总结 2. css外观属性2.1 color:文本颜色2.2 text-align:文本水平对齐方式2.3 line-height:行间距2.4 text-indent:首行缩进2.5 text-decoration 文本的装饰…

挑战52天学小猪佩奇笔记--day25

52天学完小猪佩奇--day25 ​【本文说明】 本文内容来源于对B站UP 脑洞部长 的系列视频 挑战52天背完小猪佩奇----day25 的视频内容总结,方便复习。强烈建议大家去关注一波UP,配合UP视频学习。 注:这集开始变成一段一段的猜台词,加…

代码随想Day39 | 62.不同路径、63. 不同路径 II

62.不同路径 每次向右或者向下走两个选择,定义dp数组dp[i][j] 为到达索引ij的路径和,状态转移公式为 dp[i][j]dp[i-1][j]dp[i][j-1],初始状态的第一行和第一列为1,从左上到右下开始遍历即可。详细代码如下: class Sol…

git push origin master

1、在github上面新建一个仓库,仓库名称就是项目总的名称,里面不要放置任何东西,包括README.md,然后复制仓库的地址 2、在本地项目名称下面的文件夹里面点击鼠标右键,然后点击Git Bash Here 3、使用git init去把这个目…

03 Vue3中的生命周期函数

概述 The Vue component lifecycle events happen during a component’s lifecycle, from creation to deletion. They allow us to add callbacks and side effects at each stage of the component’s life when necessary. Vue 组件生命周期事件发生在组件从创建到删除的…

跟着官网学 Vue - 透传 Attributes

MyButton.vue 这是子组件&#xff0c;它是一个包含按钮的简单组件。它有一个按钮&#xff0c;当按钮被点击时&#xff0c;会触发 handleClick 方法。MyButton 组件中禁用了属性继承&#xff0c;以避免多次触发点击事件。 <!-- MyButton.vue --> <template><!-…

LeetCode day26

LeetCode day26 LCR 189. 设计机械累加器 请设计一个机械累加器&#xff0c;计算从 1、2… 一直累加到目标数值 target 的总和。注意这是一个只能进行加法操作的程序&#xff0c;不具备乘除、if-else、switch-case、for 循环、while 循环&#xff0c;及条件判断语句等高级功能…

Java并发(十九)----Monitor原理及Synchronized原理

1、Java 对象头 以 32 位虚拟机为例 普通对象 |--------------------------------------------------------------| | Object Header (64 bits) | |------------------------------------|-------------------------| | Mark W…

MySQL 报错 You can‘t specify target table for update in FROM clause解决办法

You can’t specify target table for update in FROM clause 其含义是&#xff1a;不能在同一表中查询的数据作为同一表的更新数 单独执行复合查询是正常的&#xff0c;如下&#xff1a; 但是当执行子查询删除命令时&#xff0c;报如下错误 DELETE FROM abpusers WHERE Id I…

简单介绍十款可以免费使用的API测试工具

API开发应该是后端开发最常见的工作&#xff0c;而调试和测试API是非常关键的&#xff0c;这篇文章简单介绍几款常用的工具以供大家参考。 SoapUI SoapUI是很老牌的工具的&#xff0c;在之前Webservice盛行的时候经常会用到。 现在官方推出了Pro版本的ReadyAPI&#xff0c;但要…

Python glob

参考文章&#xff1a; Python 中glob.glob()、glob.iglob&#xff08;&#xff09;的使用-CSDN博客 Python 中glob.glob()的使用 glob.glob(path)的功能&#xff1a; 返回符合path格式的所有文件的路径&#xff0c;以list存储返回。 path的表示方法&#xff1a; 利用匹配符…

数据科学知识库

​ 我的博客是一个技术分享平台&#xff0c;涵盖了机器学习、数据可视化、大数据分析、数学统计学、推荐算法、Linux命令及环境搭建&#xff0c;以及Kafka、Flask、FastAPI、Docker等组件的使用教程。 在这个信息时代&#xff0c;数据已经成为了一种新的资源&#xff0c;而机…

C#监听端口报错“以一种访问权限不允许的方式做了访问套接字的尝试”

C#编写的端口监听程序&#xff0c;平时都能正常运行&#xff0c;但最新操作系统更新补丁重启电脑后&#xff0c;运行程序报错“以一种访问权限不允许的方式做了访问套接字的尝试”&#xff0c;客户端程序也无法连接。   百度错误信息&#xff0c;给出的答案都是端口监听程序使…

ES分词查询

全文检索介绍 全文检索的发展过程&#xff1a; 数据库使用SQL语句&#xff1a;select * from table where data like “%检索内容%”出现lucene全文检索工具&#xff08;缺点&#xff1a;暴露的接口相对复杂&#xff0c;且没有效率&#xff09;出现分布式检索服务框架solr&am…

python读取excel数据 附实战代码

在Python中&#xff0c;可以使用pandas库来读取Excel文件中的数据。下面是一个简单的例子&#xff1a; import pandas as pd# 读取Excel文件 df pd.read_excel(example.xlsx)# 显示前5行数据 print(df.head())在上面的代码中&#xff0c;我们首先导入了pandas库&#xff0c;并…

ImageNet 数据集介绍

首先介绍ImageNet 1K数据集&#xff1a; This dataset provides access to ImageNet (ILSVRC) 2012 which is the most commonly used subset of ImageNet. This dataset spans 1000 object classes and contains 1,281,167 training images, 50,000 validation images and 10…

Java 第12章 异常 本章作业

1 编程 两数相除的异常处理 各自属于哪些异常&#xff1a; 数据格式不正确 NumberformatException 缺少命令行参数 ArrayIndexOutOfBoundsException 除0异常处理 ArithmeticException ArrayIndexOutOfBoundsException 为数组下标越界时会抛出的异常&#xff0c;可以在检测到命…

C语言学习day09:运算符优先级

运算符优先级&#xff1a; //& 假如设一个int a; 给a一个变量&#xff1b; &a取a对应的地址 优先级运算符名称或含义使用形式结合方向说明1[1,2,3,4]数组下标数组名[常量表达形式]左到右()圆括号(表达式)/函数名(形参).成员选择(对象)对象.成员名->成员选择(指…

C++继承中同名非静态成员与静态成员的处理(学习笔记)

非静态成员&#xff1a; 定义一个父类Base&#xff0c;子类Son class Base { public:int m_A 10;int m_B 200;void fun(){cout << "父类函数" << endl;}void fun(int a){cout << a << endl;} }; class Son : public Base { public:int m…

GO的sql注入盲注脚本

之间学习了go的语法 这里就开始go的爬虫 与其说是爬虫 其实就是网站的访问如何实现 因为之前想通过go写sql注入盲注脚本 发现不是那么简单 这里开始研究一下 首先是请求网站 这里貌似很简单 package mainimport ("fmt""net/http" )func main() {res, …