Droid Tools
Home
⌘K
Search
FacebookX (Twitter)InstagramTikTokYouTubeRedditTelegramRSS Feed
Trending:
Galaxy S26•Android 16•Smartwatches• Tech Deals•Latest Reviews
Droid Tools

Droid Tools covers the latest Android news, device reviews, app updates, and OS guides. Stay informed with hands-on coverage from mobile tech experts.

Explore

  • News
  • Apps
  • OS
  • Phones
  • Reviews

Legal & Info

  • About Us
  • Contact
  • Editorial Policy
  • Review Policy
  • Privacy Policy
  • Terms & Conditions
  • Cookie Policy
  • Affiliate Disclosure
  • Disclaimer
  • HTML Sitemap
  • XML Sitemap
© 2026 Droid Tools. All rights reserved.
Home/Guides/How to uninstall system apps on Android (without root)
Guides

How to uninstall system apps on Android (without root)

Cristian Penisoara
May 8, 2025Updated Apr 6, 20265 min read
Cristian Penisoara
Cristian Penisoara
Guides Writer · Android Power User
Cristian Penisoara is a Guides Writer and Android specialist at Droid Tools. An Android user since version 2 and a professional event photographer, he combines technical curiosity with a detail-oriented approach - every guide he publishes is tested step-by-step on a real device before it goes live.
Profile →
unistall system apps on Android
0%
Share on XFacebookBluesky
Follow on Google
Advertisement
Trust this source on GoogleAlways see our reviews and tech guides first in search results
Add trusted source

Key Takeaways

Automated Editorial Synthesis
AI Overview
  • Duplicate media players or browsers
  • Partner bloatware like Amazon Shopping, LinkedIn, or TikTok
  • Preloaded games or theme services

Unnecessary system apps and bloatware can be annoying. They drain your battery, take up important storage, operate in the background, and are frequently impossible to remove with standard methods. Although rooting your Android device gives you complete control over system programs, most users are not advised to do so because it violates your warranty and jeopardizes security.

Thankfully, there are secure and efficient methods for disabling or removing system programs without rooting, particularly when using ADB (Android Debug Bridge). We will go over every technique in this article, from basic settings adjustments to more sophisticated (yet secure) desktop tools.

android system apps unistall with adb

What are system apps and why can’t you delete them easily

Applications that are pre-installed by the manufacturer or carrier of the device are known as system apps. These consist include third-party programs like Facebook or Netflix that OEMs package, stock utilities, or branded services.

They cannot be removed using the standard app menu since they are installed in the system partition. ADB commands, however, can be used to disable or even uninstall many.

Advertisement

Common examples of pre-installed system apps include:

  • Duplicate media players or browsers
  • OEM app stores
  • Partner bloatware like Amazon Shopping, LinkedIn, or TikTok
  • Preloaded games or theme services

Disable system apps from settings

This is the simplest method and doesn’t require a PC.

You May Also Like
Recommended
1

How to turn off Safe Mode on Android

turn off safe mode in android
2

Before using a new phone, disable these 5 Android settings.

galaxy s25 settings menu
3

Android Phone Won’t Turn On? Try These Fixes

How to fix phone that wont turn on

Steps:

You May Also Like
Recommended
1

How to turn off Safe Mode on Android

turn off safe mode in android
2

Before using a new phone, disable these 5 Android settings.

galaxy s25 settings menu
3

Android Phone Won’t Turn On? Try These Fixes

How to fix phone that wont turn on
  1. Open Settings > Apps.
  2. Tap See all apps to view the complete list.
  3. Select the system app you want to disable.
  4. Tap Disable. You may be asked to confirm your choice.

What happens when you disable an app:

  • It is removed from the app drawer.
  • It can no longer run in the background.
  • It won’t receive updates or use system resources.
  • The app is still stored on your device but rendered inactive.

Limitations:

  • Not all system apps can be disabled (depends on OEM).
  • Disabled apps can be re-enabled manually.

This is the safest approach for beginners.

Advertisement

Uninstall system apps using ADB (no root)

You can use ADB to perform advanced commands on your Android device by connecting it to a computer. This technique allows you to remove system programs for the current user without requiring root access.

Step 1: Set up ADB on your computer

  1. Download the Android SDK Platform Tools for Windows, macOS, or Linux from Google’s official site.
  2. Extract the contents to a folder (e.g., C:\adb).

Step 2: Enable developer options and USB debugging

  1. Go to Settings > About phone.
  2. Tap Build number 7 times until you see a message saying “You are now a developer.”
  3. Go back to Settings > System > Developer options.
  4. Enable USB debugging.

Step 3: Connect your phone to your PC

  • Use a USB cable to connect your device.
  • When prompted on your phone, allow USB debugging.

Step 4: Open ADB and check the connection

  1. Open a terminal or command prompt in the ADB folder.
  2. Type: adb devices – you should see your device listed.

Step 5: Find the package name of the app

To uninstall an app, you need its package name. You can find this using:

adb shell pm list packages | grep [app name]

For example, to find Facebook‘s package name:

adb shell pm list packages | grep facebook

Step 6: Uninstall the app

Use the following command:

Advertisement
adb shell pm uninstall --user 0 com.facebook.katana

That command will remove Facebook from your user profile, freeing up memory and removing it from the interface.

Note: The app is only removed for the current user, not deleted from the system partition.

Method 3: Use a no-root app debloater tool (GUI)

If you’re not comfortable with the command line, you can use a graphical tool like:

  • Universal Android Debloater (UAD)
  • ADB AppControl
  • Android Debloater by XDA Developers

These tools allow you to:

Advertisement
  • Browse installed system apps
  • Uninstall or disable them safely
  • See app names with friendly UI
  • Restore apps if needed

Most tools require:

Advertisement
  • ADB installed on your system
  • USB debugging enabled
  • Windows PC (some versions work with Linux/macOS)

They’re beginner-friendly and support a wide range of devices.

Should you uninstall or disable every system app?

No. Some system apps are critical to core Android functions. Removing them may cause:

  • Boot loops
  • Broken system features (e.g., notifications, calls, camera)
  • Incompatibility with future updates

Always check what a system app does before removing it. You can research package names or use a debloater tool with built-in safety warnings.

Safe-to-remove examples:

Advertisement
  • Social media bloatware
  • OEM-specific cloud services you don’t use
  • Built-in browser (if you use Chrome)
  • AR apps, Game Launcher, or duplicate music players

Unsafe-to-remove examples:

  • com.android.systemui
  • com.google.android.gms
  • com.android.providers.*

How to restore system apps uninstalled via ADB

If you want to bring back an app removed via ADB:

adb shell cmd package install-existing [package name]

For example:

adb shell cmd package install-existing com.facebook.katana

This will restore the app for the current user, assuming it wasn’t fully deleted from the system partition.

Uninstalling system apps without root gives you more control over your Android phone without compromising safety. ADB is a powerful tool that helps remove bloatware, reclaim storage, and speed up your device. If you’re cautious and avoid critical system packages, you can safely declutter your phone and enjoy a cleaner experience.

Advertisement

Whether you’re using the built-in disable function or running ADB commands, you don’t need root access to take control of your device anymore.

Trust this source on GoogleAlways see our reviews and tech guides first in search results
Add trusted source
Tags:#adb#apps#batterylife#howto#space#storage#system#unistall
Recommended Deals
1 / 5
Google Pixel Watch 5 (45mm)

Google Pixel Watch 5 (45mm)

5.0
529.99
Buy on Amazon
Google Pixel Watch 4

Google Pixel Watch 4

4.8
396.00$499.99-21%
Buy on Amazon
👑A good choice
Apple iPhone 17 Pro

Apple iPhone 17 Pro

4.8
$1,012.97$1,099.00-8%
Buy on Amazon
Samsung Galaxy Watch 8

Samsung Galaxy Watch 8

4.9
$289.99$349.99-17%
Buy on Amazon
✨DEAL!
Samsung Galaxy Watch Ultra (2025)

Samsung Galaxy Watch Ultra (2025)

5.0
$449.99$649.99-31%
Buy on Amazon
* As an Amazon Associate, Droid Tools earns from qualifying purchases. Read our editorial policy
Cristian Penisoara
Cristian PenisoaraGuides Writer · Android Power User

Cristian Penisoara is a Guides Writer and Android specialist at Droid Tools. An Android user since version 2 and a professional event photographer, he combines technical curiosity with a detail-oriented approach - every guide he publishes is tested step-by-step on a real device before it goes live.

Advertisement

Comments & Discussions

Join the conversation! We use Disqus to handle comments. Click the button below to load the comment section.

Advertisement

Latest Stories

gemini spark
01

Google Photos integration comes to Gemini Spark for Pro and Ultra users

02

Garmin Epix Pro Gen 2 Sapphire Edition drops to under $700 at Amazon

03

Pixel Watch 5 Special Edition Stephen Curry model now available

04

Google’s Scam Detection could be coming to Xiaomi phones, teardown suggests

Advertisement
Amazon Deals
5.0
Google Pixel Watch 5 (45mm)

Google Pixel Watch 5 (45mm)

Best Price
529.99
Buy

Top Deals

Garmin Epix Pro Gen 2 Sapphire Edition drops to under $700 at Amazon

Deal
Garmin Epix Pro Gen 2 Sapphire Edition drops to under $700 at Amazon

Pixel Watch 5 Special Edition Stephen Curry model now available

Deal
Pixel Watch 5 Special Edition Stephen Curry model now available

Google Pixel Watch 5 launches with bigger batteries and Gemini Intelligence

Deal
Google Pixel Watch 5 launches with bigger batteries and Gemini Intelligence
Advertisement
More Stories

Keep Reading

Robert HabaSep 2, 20261 min read
Guides

How to turn off Safe Mode on Android

Knowing how to turn off Safe Mode on Android comes in handy, since Safe Mode is a built-in troubleshooting tool that disables every third-party app on a phone and switches on Airplane Mode, making it easier to isolate an app causing lag, battery drain, or other issues. It's also useful for safely deleting a suspected […]

turn off safe mode in android
Robert HabaAug 28, 20261 min read
Guides

Before using a new phone, disable these 5 Android settings.

Opening a brand-new phone has a particular excitement. After removing the plastic, you move your pictures, log into your Google account, and begin taking your first snapshot. However, we frequently overlook a few crucial settings that can improve our phone in all that excitement. I looked at a few options on my current phone, a […]

galaxy s25 settings menu
Robert HabaAug 20, 20261 min read
Guides

Android Phone Won’t Turn On? Try These Fixes

If your Android phone won’t turn on, connect it to a tested wall charger for at least 30 minutes, then hold the Power button for several seconds. If nothing happens, inspect the cable, adapter, outlet, charging port, and physical buttons before attempting a forced restart. A phone that appears completely dead may actually have a […]

How to fix phone that wont turn on
Robert HabaAug 19, 20261 min read
Guides

How to Free Up Storage on Android Without Deleting Important Files

The safest way to free up storage on Android is to remove temporary files, delete offline downloads you can retrieve again, archive unused apps, and move backed-up photos or large files off the device. Start by checking what is using the space, then work from the least destructive options to the most destructive. Do not […]

Android storage
Robert HabaAug 19, 20261 min read
Guides

How to Factory Reset an Android Phone Without Losing Important Data

You cannot factory reset an Android phone without erasing the information stored locally on it. What you can do is back up your important data, verify that the backup works, perform the reset, and restore the information afterward. Before proceeding, save your photos, messages, contacts, files, app data, authentication accounts, and other irreplaceable information. Do […]

Android factory reset stock
Read Next

How to turn off Safe Mode on Android

How to turn off Safe Mode on Android