▲ 1 r/androidroot
How to Remove Bloatware on Android With No ROOT Using ADB
Here guys, i'm gonna share a way to delete any app that can be uninstalled using simple tools, just follow the steps
What You'll Need
- A Windows PC
- A USB cable
- Your Android phone
Step 1: Grab ADB & Fastboot
Download it from this XDA link: https://xdaforums.com/t/tool-windows-adb-fastboot-march-2024.3944288/
Install it, then open PowerShell or CMD.
Step 2: Turn on USB Debugging
- Go to Settings > About Phone
- Tap Build Number 7 times (
- You'll see "You are now a developer!"
- Go to Developer Options and turn on USB Debugging
>
Step 3: Connect Your Phone to Your PC
- Plug in your phone via USB
- Run this in PowerShell:
​
adb devices
- Your phone will show a popup — tap Allow
- Nothing showing up? Try this:
​
adb kill-server
adb start-server
adb devices
- You should see your device listed as
device
Step 4 — Get Into ADB Shell
adb shell
Step 5 — Start Uninstalling
Just paste whichever ones you want gone
Google stuff:
pm uninstall -k --user 0 com.android.chrome
pm uninstall -k --user 0 com.google.android.googlequicksearchbox
pm uninstall -k --user 0 com.google.android.youtube
pm uninstall -k --user 0 com.android.vending
Xiaomi stuff:
pm uninstall -k --user 0 com.mi.globalbrowser
>
Want The App Back?
Just run this and it's restored:
adb shell pm install-existing PACKAGE_NAME
u/Fit_Mongoose_5401 — 21 hours ago