小米手机卸载谷歌全家桶软件方法

早期小米国际版系统没有这么多预装软件,谷歌系的软件也只有几个基础的。现在变得越来越多,部分需要通过 ADB 命令卸载。

除了谷歌全家桶软件,用 ADB 命令也能卸载其它预装软件。不过需要留意,避免卸载系统关键服务软件,不然可能影响系统运行。如果对卸载软件没有把握,请先外置备份手机数据。如果损坏了系统,可能需要进入 Recovery 恢复出厂设置修复。

开启 USB 调试

在操作前,需要开启手机 USB 调试选项。

先点击手机设置 -> 关于手机 -> 全部参数 -> 连点数次“MIUI 版本”开启开发者选项。

再点击手机设置 -> 更多设置 -> 开发者选项 -> 开启“USB 调试”选项。

配置 ADB 命令

adb
卸载谷歌全家桶软件
Windows 图标键 + R 字母键cmdadb devices

点击允许,之后就可以开始卸载软件了。

例如要卸载系统自带 Chrome 软件,使用下面命令。

adb shell pm uninstall -k --user 0 com.android.chrome

其中红色部分是软件包名。如果要卸载其它软件,替换其中的软件包名即可。

下面是谷歌全家桶软件包名。如果要卸载的软件在这里没有列出,可以用这个方法自行查询。

软件包名

Google Play 商店com.android.vending

Google  com.google.android.googlequicksearchbox

Gmail  com.google.android.gm

Google 地图 com.google.android.apps.maps

YouTube  com.google.android.youtube

Google 云端硬盘  com.google.android.apps.docs

YouTube Music  com.google.android.apps.youtube.music

Google Play 电影  com.google.android.videos

Duo   com.google.android.apps.tachyon

Google 相册   com.google.android.apps.photos

通讯录(不建议卸载)com.google.android.contacts

日历(不建议卸载)com.google.android.calendar

Google 新闻com.google.android.apps.magazines

Google Onecom.google.android.apps.subscriptions.red

Google 播客com.google.android.apps.podcasts

Google 助理com.google.android.apps.googleassistant

Chrome  com.android.chrome

除了卸载,还可以选择冻结软件,冻结后软件就在手机上消失了,但之后可以用命令恢复。

# 停止软件运行 adb shell am force-stop com.android.chrome

# 冻结软件 adb shell pm disable-user com.android.chrome

# 恢复软件 adb shell pm enable com.android.chrome