Sometimes, you may need to remove system apps (bloatware) that come pre-installed on your Android device, either to free up space or to improve performance. In this article, we will explain how to remove system apps using the ADB (Android Debug Bridge) tool.
What is ADB?
ADB is a command-line tool used to interact with an Android device. It allows you to perform a variety of tasks such as installing apps, modifying system settings, and controlling the device remotely.
Steps to Remove System Apps Using ADB:
1. Enable Developer Mode
- Go to your device's settings.
- Choose "About Phone".
- Tap "Build Number" seven times to enable Developer Mode.
2. Enable USB Debugging
- After enabling Developer Mode, go to Settings > Developer Options.
- Enable USB Debugging.
3. Install ADB on Your Computer
- Download and install ADB on your computer.
- Make sure you have installed the correct drivers for your Android device.
4. Connect Your Device to the Computer via USB
- Connect your Android device to the computer using a USB cable.
- Open the Command Prompt or Terminal on your computer.
5. Verify the Connection to Your Device
- In the command window, type the following command:
adb devices
- If your device is properly connected, a list of connected Android devices will be displayed.
6. Remove a System App
- To list the installed apps on your Android device, use the following command:
adb shell pm list packages
- Search for the app you want to remove. To uninstall it, use the following command:
adb shell pm uninstall --user 0 <package-name>
7. Reboot Your Device
- After removing the apps you no longer need, reboot your device using the following command:
adb reboot
Notes:
- Make sure you don't remove essential system apps that are necessary for the device's basic functionality, such as apps for calls or messaging.
- Once apps are removed via ADB, they cannot be recovered unless you have a backup.
Conclusion:
With ADB, you can easily remove unwanted system apps from your Android device. Just make sure that you are aware of which apps you are removing to avoid causing issues with the system.