Cleaners for Android promise to free up memory, speed up your smartphone and remove unnecessary files. But often, after installing such applications, users are faced with aggressive advertising, background processes that themselves consume resources, or even the inability to completely remove the app. In this article, we will look at how to properly and without a trace remove a cleaner from an Android device - from a standard uninstaller to manual methods for stubborn applications.

The problem is that many โ€œoptimizersโ€ are integrated deeper into the system than regular applications. They can create system services, add themselves to startup, or disguise themselves as system processes. For example, Clean Master, CCleaner or DU Speed Booster often leave behind "tails" even after removal through Settings โ†’ Applications. We will consider all possible scenarios - from simple to the most complex, including cases when the application is not displayed in the list of installed apps, but continues to run in the background.

Why are cleaners difficult to remove completely

Most Android cleaning apps use aggressive marketing techniques to retain the user. Here are the main reasons why they resist uninstallation:

  • ๐Ÿ”„ Autostart: The application registers itself as a system service and starts automatically when the device is turned on or after a reboot.
  • ๐Ÿ“ฆ Residual files: Even after uninstallation, the cache, configuration files and folders remain in memory (for example, /Android/data/com.cleanmaster.mguard/).
  • ๐Ÿ›ก๏ธ Administrator rights: Some cleaners ask for rights Device Administrator, which blocks standard deletion.
  • ๐Ÿค– Disguise as system processes: An application can rename its services to make them harder to identify (for example, com.android.system.cleaner instead of the original name).

In addition, many cleaners integrated into the system settings, adding their items to the battery, memory or security menu, for example, after installation 360 Security in the Settings โ†’ Battery an "Optimization" tab may appear, which actually leads to the application interface. This complicates not only the removal, but also the search for all traces of the app.

๐Ÿ“Š What cleaner do you have? installed?
Clean Master
CCleaner
DU Speed Booster
360 Security
Other
None

Method 1: Standard removal through Android settings

If the cleaner did not request additional rights and was not integrated into the system, it can be removed in the standard way:

  1. Open Settings โ†’ Applications (or Settings โ†’ All applications on some firmware).
  2. Find the cleaner in the list. If it is not there, tap on the three dots in the upper right corner and select Show system processes.
  3. Click on the application name, then select Delete (or Uninstall).
  4. Confirm the action. If the button Delete is inactive, go to the following method.

On some devices (for example, Xiaomi, Huawei), you may need additional confirmation via Settings โ†’ Security โ†’ Delete applications. It is also worth checking the folder /Android/data/ in the file manager - sometimes files weighing up to 500 MB even after uninstallation.

โ˜‘๏ธ What to check after standard uninstallation

Done: 0 / 4

Method 2: Removal via rights administrator

If the button Delete is inactive or missing, the cleaner most likely requested rights. Device AdministratorThis blocks the uninstallation until the rights are revoked. Here's how to do it:

  1. Go to Settings โ†’ Security โ†’ Device Administrators (on some firmware the path may differ: Settings โ†’ Biometrics and Security โ†’ Other security settings โ†’ Device Administrators).
  2. Find the name of the cleaner in the list (for example, Clean Master Device Admin or Security Master).
  3. Uncheck the box next to the application and confirm the action.
  4. Return to Settings โ†’ Applications and try deleting again.

On devices with Android 10+ path may vary. For example, on Samsung One UI you need to go to Settings โ†’ Biometrics and security โ†’ Other security settings โ†’ Device administrators. If the cleaner does not appear in the list of administrators, but removal is still blocked, try disable it manually via ADB (method 5).

๐Ÿ’ก

If you cannot find the "Device Administrators" section, use the search in the settings - enter the query "administrator".

Method 3: Removing residual files manually

Even after successful uninstallation, cleaners often leave behind:

  • ๐Ÿ“ Folders in /Android/data/ i /Android/obb/ (weighing up to 1 GB).
  • ๐Ÿ—ƒ๏ธ Configuration files in /data/data/ (requires root access for access).
  • ๐Ÿ”— Symbolic links in system folders (rare, but found in aggressive optimizers).

To remove them:

  1. Open any file manager (for example, Solid Explorer or FX File Explorer).
  2. Go to folder /Android/data/ and find the folder with the name of the cleaner package (for example, com.cleanmaster.mguard for Clean Master). Delete it.
  3. Check the folder /Android/obb/ for files with the same name.
  4. If you have root access, go to /data/data/ and delete the folder with the package name.

To search for the package name, you can use the application App Inspector (available in Google Play) or website APKMirror, where packages of popular applications are indicated. For example, for CCleaner this is com.piriform.ccleaner, and for DU Speed Booster โ€” com.dianxinos.optimizer.duplay.

How can I find out the name of the package without third-party applications?

Open Settings โ†’ Applications, find the cleaner and tap on it. In most firmware, the name of the package is displayed in the "Application Information" section (may be called "Package name" or "Package name").

Method 4: Uninstall via Safe Mode

If the cleaner is blocking deleting or keeps restarting, try deleting it in Safe Mode. This mode disables all third-party applications, including optimizers:

  1. Turn off the device.
  2. Hold the power button until the manufacturer's logo appears, then hold the button Volume Downuntil the device boots. On some models (for example Samsung), you need to hold the button Power until the menu appears and select Safe Mode.
  3. After loading, the message will appear in the lower right corner of the screen Safe Mode.
  4. Go to Settings โ†’ Applications and remove the cleaner.
  5. Restart the device in normal mode.

If the cleaner is still not removed, this may mean that it is integrated into the firmware (often found on Chinese smartphones with pre-installed optimizers). In this case, only rolling back to factory settings will help. or using ADB.

๐Ÿ’ก

Safe Mode disables all third-party applications, but does not delete their data. After removing the cleaner, it is recommended to manually check the /Android/data/ and /Android/obb/ folders.

Method 5: Removal via ADB (for experienced users)

If the cleaner is not removed by standard methods, you can use Android Debug Bridge (ADB). This method requires connecting the smartphone to the computer, but is guaranteed to remove even the most stubborn applications.

Instructions:

  1. Download and install ADB on your computer (for example, via Platform Tools from Google).
  2. Enable USB Debugging on your smartphone: Settings โ†’ About the phone โ†’ Build number (tap 7 times to unlock Developer mode), then return to Settings โ†’ System โ†’ Developer mode โ†’ USB debugging.
  3. Connect your smartphone to the computer and confirm permission to debug.
  4. Open Command Prompt (or Terminal on Mac/Linux) and enter:
adb devices

(Your device should be displayed. If not, check your drivers.)

adb shell pm uninstall -k --user 0 com.nazvanie.paketa

Replace com.nazvanie.paketa with the actual package name cleaner (for example, com.cleanmaster.mguard).

If an error appears DELETE_FAILED_DEVICE_POLICY_MANAGERthen the application has administrator rights. First revoke them via ADB:

adb shell dpm remove-active-admin com.nazvanie.paketa/.admin.Receiver

Then repeat the uninstall command.

๐Ÿ’ก

To find out the exact administrator path (.admin.Receiver), use command adb shell dumpsys device_policy_manager and find the name of your cleaner in the output.

Method 6: Reset to factory settings (last chance)

If none of the methods helped, it remains full resetThis will delete all data from the device, including the cleaner and it. traces. Before resetting:

  • ๐Ÿ“ฑ Make a backup copy of important data (photos, contacts, messages).
  • ๐Ÿ” Make sure you know the login and password for your Google account (will be required after the reset).
  • ๐Ÿ“‹ Write down the IMEI of the device (dial *#06# in the dialer).

Reset instructions:

  1. Go to Settings โ†’ System โ†’ Reset settings (on some devices: Settings โ†’ General settings โ†’ Reset).
  2. Select Delete all data (factory reset).
  3. Confirm the action. The device will reboot and begin the cleaning process (may take up to 10 minutes).

After resetting, the device will be like new. Do not reinstall cleaners โ€”modern versions of Android (starting from Android 8.0 Oreo) have built-in optimization tools that work more efficiently than most third-party applications.

๐Ÿ’ก

Resetting to factory settings is a last resort On devices with encryption (by default. in Android 10+), the process can take up to an hour, and after resetting, you will need to re-set up all accounts.

How to avoid installing unnecessary cleaners in the future

Many cleaners not only do not help, but also slow down Here's how to protect yourself:

  • ๐Ÿšซ Do not install applications that promise to โ€œspeed up Android by 2 timesโ€ or โ€œfree up 100% of memory.โ€
  • ๐Ÿ” Before installing, check reviews on Google Play i 4PDA. Cleaners with ratings below 4.0 stars often contain advertising or malicious code.
  • โš™๏ธ Use built-in Android tools:
    • Cache clearer: Settings โ†’ Memory โ†’ Clear cache.
    • Battery optimization: Settings โ†’ Battery โ†’ Adaptive battery.
    • Deleting unnecessary files: Settings โ†’ Storage โ†’ Free up space.
  • ๐Ÿ›ก๏ธ Install a reliable antivirus (for example, Malwarebytes or Bitdefender) to scan for suspicious applications.

If you really need to free up space, use Files by Google (official Google app) or SD Maid (for advanced users). These tools are not integrated into the system and do not leave โ€œtailsโ€ behind.

Application Risks Alternative
Clean Master Aggressive advertising, background processes, difficult removal Built-in clearing the cache in Android
CCleaner Data collection, unnecessary notifications Files by Google
DU Speed Booster Integration into system settings, complex uninstallation Manual optimization via Settings โ†’ Battery
360 Security Pre-installed on some Chinese smartphones, can only be removed via ADB Disable via Settings โ†’ Applications โ†’ Disable
๐Ÿ’ก

To check how much space unnecessary files take up, open Settings โ†’ Storage. Android automatically sorts files into categories (cache, downloads, garbage) and offers to delete them.

FAQ: Frequently asked questions about removing cleaners

Can I remove a cleaner without root access?

Yes, in 90% of cases standard deletion through settings or ADBis sufficient. root access is required only to remove system applications (for example, pre-installed cleaners on Xiaomi or Huawei).

The cleaner is deleted, but notifications continue to arrive. What to do?

This means that the application left behind a notification service. Check:

  1. Settings โ†’ Applications โ†’ Show system ones (find residual processes).
  2. Settings โ†’ Notifications โ†’ Latest apps (turn off notifications manually).

If this does not help, use ADB to completely remove the package.

After removing the cleaner, the smartphone began to work slower. Why?

Cleaners often mask the real state of the system. After they are removed, Android may temporarily Reindex files, which takes up resources. Wait 1-2 days - the speed will return to normal. Also check background processes in Settings โ†’ Developer โ†’ Running services.

How to remove the cleaner from a device without Google Play (Chinese firmware)?

On devices without Google Services (for example, on some Huawei or Meizu) use:

  1. Built-in uninstaller in Settings โ†’ Applications.
  2. ADB (if standard uninstall blocked).
  3. Manual removal of APK through a file manager with root access (folder /system/app/ or /system/priv-app/).

Is it possible to restore data after resetting to factory settings?

No, resetting completely erases user data. However, if you had it turned on synchronization with Google Account, contacts, mail and some settings will be restored automatically after logging in again. Photos and videos can only be restored from a backup copy (for example, from Google Photos or local backup).