ADB Bloatware Manager

A curated list of OEM and Bloatware packages that can be safely uninstalled from your Android device using ADB. **Includes lists for Waydroid, Huawei Matepad, and Android TV.**

<
Info
Safe Removal (Recommended) adb shell pm uninstall --user 0 <package_name> Removes app for current user only → no risk of bricking
adb shell pm disable-user --user 0 <package_name>
Reinstall removed/disabled system app: adb shell cmd package install-existing <package_name>
Root + Full Removal (Dangerous) adb shell su -c "pm uninstall --keep-data <package_name>" Warning: Can brick your device if you remove critical system apps!
Tip: Find package name → adb shell pm list packages | grep keyword
Safe to Remove (Non-essential apps) Medium Risk (Cloud/Payment services, minor system utilities) Risky (Core utilities or deeper system integration)

Loading package data...