Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 1.4 KB

File metadata and controls

22 lines (18 loc) · 1.4 KB

adb-hacks-to-remove-android-bloatware

Using GUI (No root, GUI based no terminal involved, Easier to do, No PC required)

  1. You'll need to install Shizuku and activate it first.
  2. Install Canta.

Using CLI (No root, Requires a PC and a bit of terminal expertise)

Remove bloatware from your android device using power of adb.

  1. Connect your phone Connect your android device and run the following command to see if it's properly connected or not. If it's not then you might need to enable Developer Option in your phone or install some drivers on your system.
    adb devices
  2. List the packages installed on your phone (Skip if you already know the package name)
    adb shell pm list packages
  3. To Uninstall the package
    adb shell pm uninstall -k --user 0 <package_name>
    Example: adb shell pm uninstall -k --user 0 com.google.android.youtube
  4. To ReInstall a package (if you need your app again)
    adb shell pm install-existing <package_name>
    Example: adb shell pm install-existing com.google.android.youtube

Here is the list of bloatware i have removed from my phone. Use at your own risk. Your phone might stop working properly.