Skip to content

Instantly share code, notes, and snippets.

@pacificlion
Created January 22, 2023 07:26
Show Gist options
  • Save pacificlion/cdd83a930695c19b57c09e78e9b60d47 to your computer and use it in GitHub Desktop.
Save pacificlion/cdd83a930695c19b57c09e78e9b60d47 to your computer and use it in GitHub Desktop.
Remove Bloatware android

Remove bloatware in android without rooting

Instructions

  • Download adb tools for your mac/linux/windows from here
  • Extract zip package and keep it in location e.g Desktop
  • Open terminal and change directory to the extracted folder
  • Plug in your android phone to PC and check if adb tool is able to find your phone
./adb devices
  • If you are not able to see the devices like below, check if USB debugging is switched on your phone

Screen Shot 2023-01-21 at 11 10 28 PM

  • If you are able to see your device, like below, you can proceed further

Screen Shot 2023-01-21 at 11 13 59 PM

  • Find the android app package you want to uninstall for e.g. 'youtube'. Run following command
./adb shell pm list packages | grep 'youtube'

The output should like below

Screen Shot 2023-01-21 at 11 15 01 PM

  • Remove app by executing following command. You should see success message if its uninstalled
./adb shell pm uninstall -k --user 0 com.google.android.youtube
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment