Skip to content

Instantly share code, notes, and snippets.

@snapeuh
Created November 22, 2019 10:29
Show Gist options
  • Save snapeuh/e76f75efae28ce53a9871d7c46b1b5fc to your computer and use it in GitHub Desktop.
Save snapeuh/e76f75efae28ce53a9871d7c46b1b5fc to your computer and use it in GitHub Desktop.
Remove some Google apps and MIUI apps on my Xiaomi 9T phone
@echo off
set /p Y=Enter adb path:
cd /d %Y%
adb devices
pause
adb shell pm uninstall --user 0 com.android.chrome
adb shell pm uninstall --user 0 com.google.android.apps.tachyon
adb shell pm uninstall --user 0 com.google.android.music
adb shell pm uninstall --user 0 com.google.android.talk
adb shell pm uninstall --user 0 com.google.android.videos
adb shell pm uninstall --user 0 com.google.ar.lens
adb shell pm uninstall --user 0 com.miui.videoplayer
adb shell pm uninstall --user 0 com.miui.player
adb shell pm uninstall --user 0 com.miui.msa.global
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment