缘起
最近换了个红米 K40 的手机,刷机需要等 7 天,在等待过程中,系统自带的 MIUI 12.5 OTA 升级成了 MIUI 13,同样,在 MIUI 13 下也做了很多系统自带 app 的优化(删除)工作,特此记录,等过了 7 天刷成 miaomi.eu 后或再 OTA 升级后直接重用。
准备工作
- 手机打开 develop 菜单
- 打开 usb 调试功能
- 电脑上安装 adb 软件
- ……
这些都是基本操作,就不赘述了。
show me the code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
| adb shell pm uninstall --user 0 com.miui.systemAdSolution adb shell pm uninstall --user 0 com.miui.analytics adb shell pm uninstall --user 0 com.xiaomi.gamecenter.sdk.service adb shell pm uninstall --user 0 com.xiaomi.gamecenter adb shell pm uninstall --user 0 com.sohu.inputmethod.sogou.xiaomi adb shell pm uninstall --user 0 com.miui.player adb shell pm uninstall --user 0 com.miui.video adb shell pm uninstall --user 0 com.miui.notes adb shell pm uninstall --user 0 com.miui.translation.youdao adb shell pm uninstall --user 0 com.miui.translation.kingsoft adb shell pm uninstall --user 0 com.android.email adb shell pm uninstall --user 0 com.xiaomi.scanner adb shell pm uninstall --user 0 com.miui.hybrid adb shell pm uninstall --user 0 com.miui.bugreport adb shell pm uninstall --user 0 com.milink.service adb shell pm uninstall --user 0 com.miui.gallery adb shell pm uninstall --user 0 com.miui.yellowpage adb shell pm uninstall --user 0 com.xiaomi.midrop adb shell pm uninstall --user 0 com.miui.virtualsim adb shell pm uninstall --user 0 com.xiaomi.payment adb shell pm uninstall --user 0 com.mipay.wallet adb shell pm uninstall --user 0 com.miui.voiceassist adb shell pm uninstall --user 0 com.miui.touchassistant adb shell pm uninstall --user 0 com.xiaomi.mitunes adb shell pm uninstall --user 0 com.xiaomi.pass adb shell pm uninstall --user 0 com.miui.klo.bugreport adb shell pm uninstall --user 0 org.mipay.android.manager adb shell pm uninstall --user 0 com.miui.voicetrigger adb shell pm uninstall --user 0 com.miui.personalassistant adb shell pm uninstall --user 0 com.xiaomi.aiasst.vision adb shell pm uninstall --user 0 com.xiaomi.aiasst.service
adb shell pm disable-user --user 0 com.miui.analytics adb shell pm uninstall --user 0 com.xiaomi.migameservice adb shell pm uninstall --user 0 com.miui.miservice
|