Skip to content

Instantly share code, notes, and snippets.

@akdasa
Last active October 24, 2019 13:51
Show Gist options
  • Save akdasa/3187ace423044a5e8290c374f85b2b5a to your computer and use it in GitHub Desktop.
Save akdasa/3187ace423044a5e8290c374f85b2b5a to your computer and use it in GitHub Desktop.
Get rid of bloatware on your Android
  1. Install "Platform Tools" from https://developer.android.com/studio/releases/platform-tools
  2. Enable Developer Mode (https://www.androidexplained.com/enable-miui-developer-mode/)
  3. Connect your phone
  4. Run shell:
cd ./Downloads/platform-tools
./adb/shell

Remove all the bloatware you want. To find right ID just long press and select "App info", when press (i) burron on top-right.

pm uninstall -k --user 0 com.android.browser
pm uninstall -k --user 0 com.miui.yellowpage
pm uninstall -k --user 0 com.miui.gallery
pm uninstall -k --user 0 com.xiaomi.mipicks
pm uninstall -k --user 0 com.miui.notes
pm uninstall -k --user 0 com.miui.player
pm uninstall -k --user 0 com.xiaomi.glgm
pm uninstall -k --user 0 com.miui.videoplayer
pm uninstall -k --user 0 com.android.chrome

Related: https://www.right-brothers.net/how-to-remove-bloatware-from-xiaomi-without-root/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment