Deleting applications on Android seems like a simple task - just click โ€œDeleteโ€ in the menu. But what if the app leaves behind tens of megabytes of garbage, and its data continues to take up space in memory? Complete removal of applications requires not only deleting the APK file, but also clearing the cache, user data, temporary files, and even system registry entries. This is especially true for โ€œheavyโ€ games, instant messengers and social networks, which can leave behind gigabytes of unnecessary information.

In this article we will look at how completely remove an application from Android โ€”from the standard method through settings to using ADB commands and manually clearing folders. Let's consider the nuances for different OS versions (from Android 10 to Android 14), as well as the features of devices from Samsung, Xiaomi, Huawei and other manufacturers. You will learn what tools help you find the โ€œtailsโ€ of deleted apps, how to avoid mistakes when cleaning system applications, and why sometimes even after uninstallation the application continues to run in the background.

Why standard removal does not work

When you delete an application via Settings โ†’ Applications, the system removes only the main APK file. However, many apps create additional data:

  • ๐Ÿ“ Cache and user data โ€”remain in folders /data/data/ and /sdcard/Android/data/. For example, Telegram or WhatsApp can leave behind gigabytes of media files.
  • ๐Ÿ”— Symbolic links โ€”some applications create shortcuts in system folders that are not deleted automatically.
  • ๐Ÿ“Š Registry entries โ€”information about resolution, logs and settings can be stored in Android databases.
  • ๐Ÿค– Background processes โ€”some apps (for example, antiviruses or optimizers) register services that continue to work even after deletion.

Moreover, on devices with MIUI (Xiaomi), One UI (Samsung) or EMUI (Huawei), manufacturers often block complete cleaning, leaving โ€œfrozenโ€ versions of applications for quick re-installation. This saves traffic, but eats up memory.

๐Ÿ“Š How often do you delete unnecessary applications?
Once a week
Once a month
Only when memory runs out
Never delete
Another option

To check how much garbage is left by deleted apps, you can use a file manager with rights root (for example, Root Explorer) or utilities like SD Maid. They show "dead" folders that take up space but are not displayed in the standard interface.

โš ๏ธ Warning: On some devices (for example, Samsung Galaxy s One UI 5.0+), attempting to manually delete folders from /data/data/ without root access may cause others to fail. applications. Always make a backup copy before deep cleaning.

Method 1: Standard removal through settings

This method is suitable for most users and does not require additional tools. However, it only deletes the APK file, leaving part of the data.

  1. Open Settings โ†’ Applications (on some devices the path may be different, for example Settings โ†’ Manage applications).
  2. Find the desired application in the list and tap on it.
  3. Click Delete (or Uninstall).
  4. Confirm the action. If the button is inactive, this means the application is system (more on this below).

After removal, it is recommended to clear the cache and data manually:

  • ๐Ÿงน Return to the list of applications and find items Storage or Memory.
  • ๐Ÿ” Check the section Other applications or Unused โ€”sometimes records of deleted apps remain there.
  • ๐Ÿ—‘๏ธ Use the built-in optimizer (for example, Storage & Performance on Xiaomi or Device care on Samsung).

โ˜‘๏ธ What to do after standard deletion

Done: 0 / 4

On devices with Android 12+ a function has appeared Automatic cleaning - it deletes unused applications and their data after 3-12 months of inactivity To enable. her, go to Settings โ†’ Storage โ†’ Free up space โ†’ Automatic cleaning.

Method 2: Removing with clearing data and cache

If you want to delete application along with all its data, use this method. It is suitable for instant messengers, games and apps that store large files (for example, Google Maps with offline maps or Spotify with downloaded music).

  1. Open Settings โ†’ Applications and select the one you need.
  2. Tap on Storage (or Memory).
  3. Press Clear cache and Clear data (if the buttons are active).
  4. Return to the application information screen and press Delete.

On some devices (for example, Huawei s EMUI), instead of the button Clear data there may be an item Space managementThere you can manually delete downloaded files, media and others. data.

Manufacturer Path to clear data Features
Samsung (One UI) Settings โ†’ Device care โ†’ Memory โ†’ Applications There is a โ€œDeep cleaningโ€ function, but requires a reboot
Xiaomi (MIUI) Settings โ†’ Applications โ†’ Application management โ†’ Storage You can remove โ€œresidual files" through the built-in cleaner
Google Pixel (Stock Android) Settings โ†’ Applications โ†’ Storage and cache No additional tools, only basic cleaning
Huawei (EMUI/HarmonyOS) Settings โ†’ Applications โ†’ Storage โ†’ Space management Allows you to selectively delete downloaded files

On devices with Android 11 and later, some applications (for example, Google Play Services) may block complete data clearing due to integration with system services. In this case, only resetting the settings or using ADB will help.

Method 3: Removing system applications (without root)

Many manufacturers install on devices built-in applicationsthat cannot be removed in the standard way. These could be duplicate services (Samsung Browser next to Chrome), branded utilities (Mi Video on Xiaomi) or unnecessary games. They can be disabled or removed using ADB (Android Debug Bridge).

Warning: deleting system applications can lead to unstable operation of the device. For example, deleting Google Play Services will break the operation of many functions, including Push notifications and authorization through Google.

What system applications can be deleted without risk?

Safely delete duplicate browsers, music players, standard games (for example, Samsung Game Launcher), as well as branded utilities like Mi Pay or Huawei AppGalleryif you do not use them. Do not touch services with names com.google.android, com.android.system or com.qualcomm โ€”this can lead to critical failures.

Instructions for removing via ADB:

  1. Enable USB debugging in Settings โ†’ System โ†’ For developers (if the section is hidden, tap 7 times on the build number in Settings โ†’ About phone).
  2. Connect your phone to the PC and install ADB drivers.
  3. Open a command line (Windows) or terminal (macOS/Linux) and enter:
adb devices

(The name of your device should appear.)

adb shell pm uninstall -k --user 0 com.package.name

Replace com.package.name with the name of the application package (you can find it through App Inspector or adb shell pm list packages).

Example for deleting Samsung Browser:

adb shell pm uninstall -k --user 0 com.sec.android.app.sbrowser
โš ๏ธ Attention: On some devices (for example, Xiaomi with a locked bootloader), ADB commands for deleting system applications may not work. In this case, only obtaining root access will help.

Method 4: Full clean using root access

If you have root access, you can delete the application with all its traces, including folders in /data/data/ and entries in system databases. File managers are suitable for this. like Root Explorer or FX File Explorer, as well as specialized utilities:

  • ๐Ÿ› ๏ธ SD Maid - finds and deletes โ€œdeadโ€ folders, cache and unnecessary files.
  • ๐Ÿงน Titanium Backup โ€” allows you to completely erase the application along with data and settings.
  • ๐Ÿ” Root App Deleter โ€”a convenient interface for deleting system and user applications.

Step-by-step guide:

  1. Open Root Explorer and go in /data/app/ (for user applications) or /system/app/ (for system ones).
  2. Find the folder with the package name (for example, com.facebook.katana for Facebook).
  3. Delete the folder and then check /data/data/[package_name] and /sdcard/Android/data/[package_name].
  4. Reboot the device.

For automatic cleaning, you can use the command in Terminal Emulator:

su

rm -rf /data/data/com.package.name

rm -rf /sdcard/Android/data/com.package.name

๐Ÿ’ก

Before bulk deleting system applications, make a backup via Titanium Backup or Nandroid Backup v TWRP. This will allow you to restore the system if something goes wrong.

Method 5: Using third-party cleaners

If you donโ€™t want to bother with manual settings, you can use specialized apps. They analyze the system and find residual files of deleted applications. The best options:

Application Functions Cons
SD Maid Deletes cache, empty folders, residual files Free version with limitations
CCleaner Clears cache, history, temporary files Aggressive advertising in the free version
Files by Google Finds large and unnecessary files Does not delete system residues
AVG Cleaner Optimizes memory and removes garbage Requires a lot of permissions

Example of working with SD Maid:

  1. Install the application from Google Play and provide access to the storage.
  2. Run a scan in the partition CorpseFinder (search for residual files).
  3. Select unnecessary folders and click Delete.
  4. Check the partition AppControl to delete cache and data.
โš ๏ธ Warning: Some cleaners (for example Clean Master) may delete useful files or show false warnings about โ€œcritical errorsโ€. Use only proven utilities with good reviews.

What to do if the application cannot be uninstalled

Sometimes an application cannot be removed using standard methods. Let's look at the main reasons and solutions:

  • ๐Ÿ”’ The application is systemic โ†’ Use ADB or root access (see Method 3).
  • ๐Ÿ›ก๏ธ Deletion protection (for example, on the desktop phone) โ†’ Contact the MDM (Mobile Device Management) administrator.
  • ๐Ÿ”„ The application has been updated via Google Play โ†’ First roll it back to the factory version in Settings โ†’ Applications โ†’ โ‹ฎ โ†’ Roll back updates, then delete it.
  • ๐Ÿ“ฑ The device is in kiosk mode mode) โ†’ You need to exit the mode through settings or reset.

If the application stuck when uninstalling, try:

  1. Restart the device.
  2. Clear cache Google Play Market and Google Play Services.
  3. Uninstall updates for Google Play Market (in the application settings).
  4. Check the free space on the device - sometimes lack of memory blocks uninstallation.
๐Ÿ’ก

If the application is not uninstalled and is not a system one, there is most likely a problem in rights or conflict with other apps. Try deleting it in safe mode (press the power button โ†’ Safe Mode).

FAQ: Frequently asked questions about deleting applications

Is it possible to delete pre-installed applications without root?

Yes, but not all. System applications (for example, Google Chrome or YouTubeare only possible through settings. For complete removal you need ADB or root. Some manufacturers (for example, disable through settings. For complete removal you need ADB or root. Some manufacturers (for example, Xiaomi) allow you to remove part of the built-in apps through the menu Settings โ†’ Applications โ†’ Delete (if the button is active).

Why does the application appear again after deleting?

This happens due to:

  • Automatic recovery via Google Play (if the application was pre-installed by the manufacturer).
  • Functions Auto recovery in Google account settings.
  • A virus or adware that re-installs the application.

To disable auto-recovery, go to Settings โ†’ Accounts โ†’ Google โ†’ Recovery applications and deactivate the option.

How to delete games while saving progress?

If the game is synchronized with Google Play Games, Facebook or its own cloud (for example, Genshin Impact), progress will be saved after reinstallation. To delete a game without losing data:

  1. Make sure that the game is linked to your account.
  2. Make a backup copy of your saves through the game menu or file manager (folder /Android/obb/ or /Android/data/).
  3. Delete the game in the standard way.

For games without cloud synchronization (for example, offline projects), copy the save folder to your PC before deleting.

Is it dangerous to delete system applications?

Yes, if you do not know what they are responsible for Removing critical services (for example, com.android.phone or com.google.android.gsf) can lead to:

  • Loss of mobile communication.
  • Inability to log in to Google.
  • Permanent errors and reboots.

It is safe to remove only obvious garbage: duplicate browsers, unnecessary widgets or branded utilities (for example, Samsung Knoxif you do not use it).

How to check if the application has been completely removed?

Use these methods:

  1. Check the folders /data/data/ and /sdcard/Android/data/ for a folder with the package name.
  2. Run the command adb shell pm list packages | grep "name" (replace โ€œnameโ€ with part of the package name).
  3. Use SD Maid or DiskUsage to scan the storage.

If an application is not displayed in the list pm list packages and its folders are not in the storage, it is completely deleted.