Has your smartphone started to slow down, get hot and discharge quickly? The reason in 90% of cases lies in the accumulated digital garbage: remnants of deleted applications, caches, duplicate photos and unnecessary system files. Even new flagships Android began to slow down, get warm and quickly discharge? The reason in 90% of cases lies in the accumulated digital garbage: remnants of deleted applications, caches, duplicate photos and unnecessary system files. Even new flagships Samsung Galaxy S24 or Google Pixel 8 after six months of use begin to โchokeโ from the accumulated data.
In this article - 7 working ways to clean Android, from built-in tools to advanced applications that are used by service center specialists. We will analyze which files can be deleted without risk, and which are dangerous to touch, and show how to restore the phone's performance without resetting to factory settings. Spoiler: clearing the cache through Settings โ Storage removes only 10-15% of the garbage - the main dirt is hidden deeper.
1. Built-in Android tools: what can be cleaned without apps
Starting with Android 9 Pie, tools for basic cleaning are integrated into the system. They will not replace specialized utilities, but will help free up 1-3 GB of memory in 5 minutes. The main advantage is no need to install third-party softwarewhich reduces the risk of viruses.
Open Settings โ Storage (on some firmware the path may differ: Settings โ Device โ Memory). Here you will see the distribution of memory by category:
- Applications โ weight of installed apps
- Media โ photos, video, music
- Files - documents, APK, downloads
- Cache - temporary application data
- System data - the โdarkestโ section where the main garbage is hidden
- ๐ฑ Application cache: Click on the category and select โClearโ. This is safe, but keep in mind that after cleaning, some applications (for example, Instagram or YouTube) will take longer to load when first launched.
- ๐๏ธ Trash: many do not know that Android has a recycle bin for photos and files (analogous to โRecently Deletedโ on the iPhone). Path:
Gallery โ Albums โ TrashorFiles โ Trash. - ๐ Unused applications: the system itself will tell you which apps did not start more than 3 months. They can be deleted or archived (the function is available on Samsung, Xiaomi, Huawei).
โ ๏ธ Attention: Do not clear the โSystem Dataโ section through standard settings! Critical firmware files are stored here. To work with them you need root access or specialized utilities like SD Maid.
2. Top 5 applications for deep cleaning (2026)
Standard Android tools remove only the tip of the iceberg. full cleaning you need third-party utilities. We tested 15 popular apps and selected the best according to the criteria:
- Efficiency (how much garbage it finds)
- Security (does not delete system files)
- Convenience (no hidden advertising and subscriptions)
| Application | Features | Cons | Link (Play Market) |
|---|---|---|---|
| CCleaner | Deletes cache, application remnants, analyzes startup. There is a RAM optimization function. | Aggressive advertising in the free version. Some functions require PRO (~300 rub/month). | ๐ ccleaner |
| SD Maid | Finds โdeadโ files, duplicates, cleans databases data. Works without root, but with it more efficiently. | Complicated interface for beginners. Paid plugins. | ๐ sdmaid |
| Files by Google | Official application from Google. Removes duplicates, large files, offers to clear the cache. | Does not clear deep system garbage. | ๐ filesgo |
| Norton Clean | Scans for viruses + cleans garbage. There is an "App Advisor" function for analyzing new installations. | Requires registration. Slow scanning. | ๐ nortonclean |
| AVG Cleaner | Optimizes the battery, removes unnecessary files, analyzes photos for quality. | Forces the installation of AVG Antivirus. response to โgarbage.โ | ๐ avgcleaner |
Our expert opinion: for disposable deep cleaning best suited for SD Maid (will find up to 5 GB of hidden garbage). For regular care โ Files by Google (simple and safe If you need cleaning + virus protection - Norton Clean.
Make a backup copy of important data|Close all running apps|Connect the phone to charge|Check free space (minimum 10% needed)-->
3. zone
If you are ready to delve into the file system, you can find and remove garbage that even the best cleaners do not see. To do this, you will need file manager access to system folders (for example, Solid Explorer or FX File Explorer).
Where to look for trash:
- ๐ Folder
Download: APK files, archives, documents are accumulated here. Often they weigh tens of gigabytes. Path:/storage/emulated/0/Download. - ๐๏ธ Application cache folders:
/data/data/package_name/cacheFor example, the cache Telegram can weigh. 5+ GB. You can delete, but the application will take longer to load. - ๐ Residual files: after deleting apps, folders remain in
/data/data/i/sdcard/Android/data/. They can be deleted, but only if you know for sure that the application has been deleted. - ๐ธ Duplicates photo: Android creates thumbnails in
/DCIM/.thumbnails. They can be deleted - they will be restored automatically.
โ ๏ธ Attention: Do not delete files in the folders:-
/system/- this is the system partition, damage to the files will lead to brick (the phone will not turn on).-
/efs/- here IMEI and serial numbers are stored. Deletion = network loss.- Files with the extension
.odex,.apkin system folders are firmware components.
What to do if you accidentally deleted an important file?
If you deleted a file from the system folder and the phone stopped working work:
1. Do not reboot the device - this may worsen the problem.
2. Connect the phone to the PC and try to restore the file via DiskDigger or Recuva (root is required).
3. does not turn on - all that remains is to reflash it via Fastboot or Odion.
4. Cleaning via ADB: for advanced users
If you are familiar with the command line, ADB (Android Debug Bridge) will help remove garbage that is not accessible through conventional methods. This is a powerful tool, but requires caution - one mistake. can break the system.
What can be done via ADB:
- Delete the cache of all applications with one command
- Clear Dalvik-cache (speeds up the system)
- Find and delete โorphanโ files (remnants of deleted apps)
- Disable unnecessary system applications (without root)
Instructions for clearing the cache of all applications:
- Install ADB Tools on PC (download from developer.android.com).
- Enable USB debugging on the phone:
Settings โ About phone โ Build number(press 7 times), thenSettings โ System โ For developers โ USB debugging. - Connect the phone to the PC and run the command:
adb shell pm trim-caches 1000GThis will clear the cache of all applications except system ones.
To clear Dalvik-cache (after this operation the phone will reboot):
adb shell rm -r /data/dalvik-cache/*
โ ๏ธ Attention: ADB commands are subject to error. If you are not sure of the action, first check it on an unnecessary device or in an emulator. For example, the command adb shell rm -rf / would completely erase all data on a phone.
Before working with ADB create a full backup via adb backup or TWRP. This will save your data if something goes wrong.
5. Optimizing startup: why the phone slows down even after cleaning
Cleaning memory is only half the battle. If your Android still slows down, the problem may be in startup. Many applications (especially Chinese: Xiaomi, Oppo, Vivo) are launched when the system starts and hang in the background, consuming RAM and battery.
How to manage startup:
- ๐ Through settings:
Settings โ Applications โ [Select application] โ Autorun. Disable autorun for instant messengers, games and unnecessary utilities. - ๐ง Through ADB: command to disable autorun of the application (replace
com.example.appto the application package):adb shell pm disable-user --user 0 com.example.app - ๐ฑ Application managers: Greenify (requires root for full functionality) or Brevent (works without root on Samsung and Huawei).
An example of "gluttonous" applications that should be disabled in startup:
- Facebook and Facebook Services (can run up to 5 background processes)
- Miui Daemon (on Xiaomi โ responsible for advertising and analytics)
- Google Play Services (do not disable it completely, but limit background activity)
Disabling autoloading for messengers (WhatsApp, Viber) will lead to a delay in notifications. For them, it is better to use the battery optimization mode: Settings โ Battery โ Optimization โ All applications โ select "Restrict".
6. When cleaning doesnโt help: radical methods
If you have tried all the methods, but the phone still lags, itโs time for radical measures. Their disadvantage is the loss of data or time for setup, but the result is guaranteed.
Options:
- ๐ Reset to factory settings: removes EVERYTHING, including viruses and system junk. data-i="200">Reset to factory settings
Settings โ System โ Reset โ Delete all data. Important: unlink your account before resetting Google i Samsung/Xiaomi, otherwise after resetting the phone may require the old password (FRP lock). - ๐ฅ Flashing: relevant if the system is damaged by viruses or unsuccessful cleanings. For Samsung use Odin, for Xiaomi โ Mi Flash. Download the firmware ONLY from official sites!
- ๐ ๏ธ Installing custom firmware: for example, LineageOS or Pixel ExperienceThis will remove all manufacturer garbage (for example,
Bloatwareon Samsung), but will require unlocking the bootloader and root access.
โ ๏ธ Attention: After resetting or flashing:- Do not restore data from the backup โas isโ - this will return the old garbage. Selectively transfer only the necessary files.
- The first 2-3 days the phone may work slower - this is normal (the system indexes the files).
7. How to prevent the accumulation of garbage: rules of prevention
It is better to prevent the phone from getting dirty than to clean it later. Follow these rules, and your Android will work quickly for years:
- ๐ซ Do not install applications from unknown sources (even APKs from โtrustedโ sites). They often contain hidden junk and advertising modules.
- ๐๏ธ Regularly clean downloads: folder
Downloadis the main source of garbage. Set up automatic cleaning via Files by Google. - ๐ Update applications: new versions are often optimized and create less garbage. But watch the size of the updates - some games (Genshin Impact, PUBG) after the update weigh 10+ GB.
- ๐ธ Use cloud services: photos and videos take up the lion's share of memory. Set up automatic uploading to Google Photo (free up to 15 GB) or Yandex.Disk.
- ๐ Monitor autoload: after installing a new application, check if it has been added to autorun (
Settings โ Applications โ Autorun).
Useful life hack: once a month check the storage via Settings โ Storage โ Memory analysis. If the โSystem Dataโ or โOtherโ section takes up more than 10 GB, itโs time to do a deep clean.
The most effective way to prevent garbage is do not accumulate itDelete unnecessary files immediately, and not โsomeday later.โ
FAQ: Frequently asked questions about cleaning Android
โ Is it possible to clear the phone without losing data?
Yes, most methods (clearing the cache, deleting duplicates, working with ADB) do not affect personal files. However, before any manipulation make a backup via Settings โ System โ Backup or Google Drive.
โ Why did the phone work even worse after cleaning?
Probable reasons:
- Deleted system files (for example, from /system).
- Cleared the cache of critical applications (for example, Google Play Services).
- System optimization is running in the background (after clearing Dalvik-cache).
Solution: restart the phone and wait 10-15 minutes. If that doesnโt help, check the logs via Logcat (ADB required).
โ Which applications create the most garbage?
Top 5 โjunkโ applications (according to an analysis of 1000 devices in 2026):
1. Facebook (cache + analytics - up to 3 GB/month)
2. TikTok (video cache - up to 5 GB)
3. Instagram (stories thumbnails - up to 2 GB)
4. Games (Genshin Impact, Call of Duty Mobile - up to 15 GB for updates)
5. Xiaomi/GetApps (branded stores put APK in /MIUI/Download)
Solution: clear the cache of these applications once a week or limit background activity.
โ Do I need to clean the phone if I have 256 GB of memory?
Yes, even with a large amount of storage. Garbage affects not only free space, but also:
- Working speed (fragmented memory slows down reading/writing).
- Wear. flash memory (the more garbage, the more often cells are overwritten).
- Security (residual files may contain personal data).
The optimal โthresholdโ is to clean the phone when less than 20% of the memory is free.
โ How to clean your phone from viruses if they block the installation of the antivirus?
If a virus blocks the installation Malwarebytes or Kaspersky:
1. Boot the phone into safe mode (press the power button โ "Safe Mode").
2. Remove suspicious applications through Settings โ Applications.
3. Install the antivirus in safe mode and scan the system.
4. If that doesnโt help, reset to factory settings.
โ ๏ธ Do not download โantivirusesโ from advertising - these are often viruses themselves!