Skip to content

Instantly share code, notes, and snippets.

@abzrg
Last active November 11, 2021 21:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abzrg/fbdcc7c611b22bb626b66245171e6e27 to your computer and use it in GitHub Desktop.
Save abzrg/fbdcc7c611b22bb626b66245171e6e27 to your computer and use it in GitHub Desktop.
De-bloat android knowing the name of the applications
# source: https://forum.xda-developers.com/t/guide-debloat-remove-stock-apps-without-root.3829593/
adb shell pm uninstall -k --user 0 com.google.android.apps.docs # Google Hangout
adb shell pm uninstall -k --user 0 com.google.android.apps.docs # Google Drive
adb shell pm uninstall -k --user 0 com.google.android.apps.maps # Google Maps
adb shell pm uninstall -k --user 0 com.google.android.apps.photos # Google Photos
adb shell pm uninstall -k --user 0 com.google.android.apps.tachyon # Google Duo
adb shell pm uninstall -k --user 0 com.google.android.googlequicksearchbox # Google App
adb shell pm uninstall -k --user 0 com.google.android.music # Google Music
adb shell pm uninstall -k --user 0 com.google.android.videos # Play Movies
adb shell pm uninstall -k --user 0 com.android.browser # Mi Browser
adb shell pm uninstall -k --user 0 com.miui.bugreport # Mi Feedback
adb shell pm uninstall -k --user 0 com.miui.compass # Mi Compass
adb shell pm uninstall -k --user 0 com.miui.notes # Mi Notes
adb shell pm uninstall -k --user 0 com.miui.screenrecorder # Mi Screen Recorder
adb shell pm uninstall -k --user 0 com.miui.videoplayer # Mi Video
adb shell pm uninstall -k --user 0 com.miui.player # Mi Music
adb shell pm uninstall -k --user 0 com.xiaomi.midrop # Mi Drop
adb shell pm uninstall -k --user 0 com.xiaomi.mipicks # Mi Apps
adb shell pm uninstall -k --user 0 com.xiaomi.scanner # Mi Scanner
# Microsoft apps
adb shell pm uninstall -k --user 0 com.microsoft.office.word # Word
adb shell pm uninstall -k --user 0 com.microsoft.office.powerpoint # Powerpoint
adb shell pm uninstall -k --user 0 com.microsoft.office.excel # Excel
adb shell pm uninstall -k --user 0 com.microsoft.office.skydrive # Sky drive
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment