Skip to content
Droid Tools
Home
About UsContact
Editorial PolicyReview Policy
Privacy PolicyCookie PolicyTerms & Conditions
⌘K
Search
FacebookX (Twitter)InstagramThreadsBlueskyTikTokYouTubeRedditTelegramRSS Feed
Trending:
Galaxy S26•Pixel 10•Android 16•Nothing OS•Gemini AI•Smartwatches•Tech Deals•Latest Reviews•How-to Guides
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.

Advertisement
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.

Common examples of pre-installed system apps include:

Advertisement
  • 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

MobileTopUP Network Inside Out: 47 Countries, 230+ Operators, One Checkout

MobileTopUP Network Inside Out: 47 Countries, 230+ Operators, One Checkout
2

How to turn off Safe Mode on Android

turn off safe mode in android
3

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

galaxy s25 settings menu

Steps:

  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.

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.

Advertisement

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:

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:

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

Most tools require:

  • 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:

  • 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.

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
💎Best Android Device
Samsung Galaxy S26 Ultra

Samsung Galaxy S26 Ultra

4.9
$1,212.85$1,499.99-19%
Buy on Amazon
Google Pixel Watch 4

Google Pixel Watch 4

4.8
396.00$499.99-21%
Buy on Amazon
Samsung Galaxy Watch 8

Samsung Galaxy Watch 8

4.9
$289.99$349.99-17%
Buy on Amazon
✨DEAL
Google Pixel 11 Pro

Google Pixel 11 Pro

5.0
1,099.00$1,299.00-15%
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

Google Messages rolls out Keep Notes integration from the September Android Drop
01

Google Messages rolls out Keep Notes integration from the September Android Drop

02

Honor MagicOS 11 debuts September 15 with Glazed Architecture, faster YOYO

03

OnePlus 16 reservations open in China, revealing design and colors ahead of launch

04

Honor MagicOS 11 to debut with hidden Power Saving Suggestions feature

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

Google Pixel Watch 5 (45mm)

Best Price
529.99
Buy

Top Deals

Pixel Watch 5 vs. Pixel Watch 4: what actually changed

Deal
Pixel Watch 5 vs. Pixel Watch 4: what actually changed

Apple Watch Series 12 vs Pixel Watch 5: how they compare

Deal
Apple Watch Series 12 vs Pixel Watch 5: how they compare

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
Advertisement
Advertisement
Recommended stories

Continue reading

More from this category →
MobileTopUP Network Inside Out: 47 Countries, 230+ Operators, One Checkout
GuidesSep 12, 2026

MobileTopUP Network Inside Out: 47 Countries, 230+ Operators, One Checkout

Behind a two-tap recharge sits a surprising amount of plumbing. Every prepaid network has its own rules about what can be topped up, in which denominations, and how quickly credit posts to a SIM. MobileTopUP hides that complexity behind a single form: pick a country, enter a number, choose an amount. What the coverage map actually covers […]

By Robert Haba
turn off safe mode in android
GuidesSep 2, 2026

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 […]

By Robert Haba
galaxy s25 settings menu
GuidesAug 28, 2026

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 […]

By Robert Haba
How to fix phone that wont turn on
GuidesAug 20, 2026

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 […]

By Robert Haba
Next in queue

Read the next article

The next story loads as you reach the end. You can also load it using the button.