【adb】iqoo系统精简垃圾内置应用

免责声明

这个得谨慎点,虽然我验证过两部手机和不同版本的系统,但是总会有特殊的存在、

本教程来自于互联网搜集整理, 按照本教程造成的用户设备硬件或数据损失,本人概不承担任何责任,如您不同意此协议,请不要查阅以下教程,然后退出该页面。

背景

现在root麻烦了, 但是很多应用是可以通过adb卸载的。

列表

电脑cmd直接敲入

复制代码
adb shell pm uninstall --user 0 com.vivo.browser // 浏览器(头号垃圾),司马的内置主动上报接口,相关人员常回家看看啊。
adb shell pm uninstall --user 0 com.android.VideoPlayer // i视频
adb shell pm uninstall --user 0 com.vivo.space // vivo乐园
adb shell pm uninstall --user 0 com.vivo.game // 游戏中心
adb shell pm uninstall --user 0 com.baidu.input_vivo // 内置的百度输入法vivo版本
adb shell pm uninstall --user 0 com.vivo.dream.music // i 音乐(轻简约)

restricted

卸载音乐你可能碰到这个,顽固玩意儿

For Android 13 try:

adb shell service call package 131 s16 com.android.bbkmusic i32 0 i32 0

For Android 12 try:

adb shell service call package 134 s16 com.android.bbkmusic i32 0 i32 0

好吧,对于最新版橘子3系统无用, 旧版可以。 有新方法记得反馈下。

disable也不让。

最后一招,禁用它后台的一切活动, 这彼阳的晚意

复制代码
adb shell cmd appops set com.android.bbkmusic RUN_IN_BACKGROUND ignore
相关推荐
wxson728214 小时前
【Android视频监控系统技术总结】
android·音视频
hunterandroid15 小时前
[Android 从零到一] LiveData 粘性事件与单次消费:从重复触发到可靠事件总线
android
hunterandroid16 小时前
[Android 从零到一] Android 事件分发机制:从 ACTION_DOWN 到 View 事件消费链路
android
阿巴斯甜16 小时前
adb‑shell 全套命令实操总结
android
奔跑的架构师17 小时前
[A-49]ARMv9/v8-PSCI接口规范与工作流程简介
android·linux·arm开发·arm
AFinalStone17 小时前
Android 7系统国际化(七)Resources 与 AssetManager 源码剖析
android·国际化·local
Android-Flutter18 小时前
Android 内存泄漏详解
android·kotlin
catchadmin18 小时前
Fiber 与 PHP 8.6 Polling API 异步初探
android·开发语言·php
Android-Flutter19 小时前
android Handler , Looper , Message , MessageQueue 详解
android·kotlin