The operating system Android 5.0 Lollipop and its update 5.1 brought many visual and functional changes, but the issues of managing memory and pre-installed software remained relevant. Many users are faced with a situation where the standard delete button is inactive, and the device begins to work slower due to an excess of background processes. Understanding how to properly free up space and remove unnecessary software is critical to extending the life of a smartphone on this platform.

Unlike more modern versions, the “five” has its own specific restrictions in the interface and access rights. System applications are often protected from accidental deletion, which requires the use of more advanced intervention methods. In this material, we will analyze in detail all the available methods: from simple menu settings to using USB debugging.

Before taking radical measures, you need to assess the type of app you want to eliminate. Some processes are critical to the operation Google Services or basic functionality of the phone, and removing them may cause system instability. We will consider safe algorithms of actions that minimize the risks of turning the device into a “brick.”

Standard uninstallation through settings

The most obvious and safest way to get rid of unnecessary software is to use the built-in application manager. In the environment Android 5 the path to these settings may differ slightly depending on the manufacturer's shell (for example, TouchWiz from Samsung or MIUI from Xiaomi), but the general logic remains the same.

You need to open the main menu and find the icon Settings. Next you should go to the Applications or Application Managersection. This displays a complete list of installed software, divided into tabs: “Downloaded”, “On SD card” and “All”. Select the desired app from the list and click on it.

If the application was installed by the user, you will see an active button Delete. Clicking on it will bring up a confirmation window where you will need to agree to the loss of app data. After confirmation, the system will clean the files and free up space in the device memory.

⚠️ Attention: If the “Delete” button is inactive (gray) or missing, this means that the application has system status. An attempt to remove it using standard methods is impossible without obtaining extended access rights.

For apps located on an external drive, the process is similar, but preliminary data movement may be required. Make sure that the memory card is in good condition and correctly mounted by the system before starting the procedure.

☑️ Check before deleting

Done: 0 / 4

Removal via the desktop and application panel

A faster method is available directly from the main screen of the smartphone. This method is convenient for mass cleaning of custom games and utilities that you downloaded yourself from the store Google Play. Interface Launcher In the fifth version of Android, it supports intuitive icon management.

Find the icon of the app to be removed on the desktop. Press it and hold your finger for 1-2 seconds. An area with the text Delete or a trash can icon should appear at the top or bottom of the screen. Drag the icon to this area and release your finger.

In some shells, such as LG Home or stock Launcher, after a long press, a pop-up menu appears with options for actions. Select item Delete or Uninstall. The system will ask for confirmation, after which the app will be uninstalled.

It is worth noting that system application shortcuts often cannot be dragged to the trash. In such cases, the shortcut may simply disappear from the screen (deleting the shortcut), but the application itself will remain in the device's memory. This is a common pitfall for newbies who think they've cleared space.

💡

If only the "App Info" menu appears when you long press it, then the launcher doesn't support direct deletion via the desktop. Use the settings.

After deleting, it is recommended to reboot the device so that the interface cache is updated and the “ghost” icons disappear.

Working with pre-installed software (Bloatware)

Smartphone manufacturers often bundle their devices with a set of unnecessary apps that take up space and consume resources. In enthusiast terminology, such software is called Bloatware. On Android 5, you cannot delete such applications in the standard way, since they are signed with a system certificate.

The only option available without root access is Disable applications. In the settings menu, in the app card, instead of the delete button, the button Disablewill be available. After clicking, the app will stop launching, disappear from the list of applications and will not work in the background.

However, the application files will remain on the system partition. Complete physical removal requires obtaining superuser rights (Root). A popular tool for this is the utility Titanium Backup or System App Remover. Once rooted, these apps allow you to see and erase even critical system components.

  • 📱 Risks: Removing key system components (for example, SystemUI or Phone) will make the device unable to boot.
  • 💾 Backup: Before use root tools, be sure to make a full backup of the system (Nandroid backup).
  • ⚙️ Warranty: Obtaining root access and modifying the system partition often voids the manufacturer's warranty.
What is System App Remover?

This is a specialized application that scans the system partition and allows you to remove pre-installed apps that are usually hidden from the user. Requires root access.

If you are not sure of the purpose of a particular system process, it is better to limit yourself to disabling it. This will give the same effect in terms of performance, but will leave the option to revert everything back in case of failure.

Using Secure Boot Mode

Sometimes an application is not uninstalled because it is actively being used by another process or is part of malware that is blocking its uninstallation. In such cases, Safe Mode comes to the rescue (Safe Mode).

In this mode, only the basic components of the operating system are loaded, and all third-party applications are temporarily disabled. To enter safe mode on most Android 5 devices, press and hold the power button until the shutdown menu appears.

Then press and hold item Disable on the screen. A dialog box will appear asking you to reboot into Safe Mode. Confirm the action. After loading, a corresponding message will be visible in the corner of the screen.

While in this mode, go to the application settings and try to remove the problematic app. Since it is not running and does not have active privileges, the removal should be successful. To exit the mode, simply restart your phone as usual.

⚠️ Attention: In safe mode, some phone functions (sound, Wi-Fi, Bluetooth) may not work correctly or be disabled. This is normal system behavior for diagnostics.

This method is especially effective against mining viruses and adware that try to prevent themselves from being removed during normal system operation.

📊 Have you encountered uninstallable applications?
Yes, often
Rarely, but it happened
Never, everything is deleted
I don’t know, I haven’t checked

Uninstallation via computer and ADB

For advanced users, who do not want to root but need to remove system junk, there is a method to use USB debugging. The tool ADB (Android Debug Bridge) allows you to control the device from your computer, sending commands to remove packages.

First you need to activate the developer mode on your smartphone. Go to Settings → About phone and click 7 times on the item Build number. After the message “You have become a developer” appears, return to the main settings menu and find the new section For developers.

Enable the option USB Debugging. Connect your phone to your computer with a cable. The device drivers and SDK Platform Tools must be installed on the PC. Open a command line or terminal in the folder with the adb utility.

adb devices

The command will show a list of connected devices. If everything is correct, you will see the serial number. Next, enter the command to remove a specific package:

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

Instead package name you need to substitute the exact name, which can be found through the command adb shell pm list packages. This method removes the application for the current user (user 0), effectively hiding it and freeing up space, but without directly affecting the system partition, which is safer than completely deleting it.

ADB command Description of action Requirements
adb shell pm list packages List all installed packages Enabled debugging
adb shell pm uninstall -k --user 0 <package> Uninstall an application for the current user Developer rights
adb shell pm disable-user --user 0 <package> Disable an application (analogous to a button in the menu) Without root access
adb install <file.apk> Installing an application from a computer Presence of an APK file
💡

The ADB method allows you to remove system applications without root access, but requires a computer and basic knowledge of working with the command line line.

Cleaning residual files and cache

After deleting an application, folders with data, configuration files and cache often remain in the device memory. On Android 5, automatic cleaning of these residues does not always work effectively, so manual intervention is required.

Use the built-in file manager or a third-party explorer, for example ES Explorer or Total Commander. Go to the root of the internal memory and find the folder Android/data. Data of deleted apps, named after their packages, is stored here.

Also check the root directory for folders with the names of deleted applications. Often game developers create separate directories for the graphics cache (for example, folders com.gameloft.. or com.ea..). You can safely delete them if the game itself has already been uninstalled.

  • 🗑️ Download folder: Check your downloads for APK installers that are no longer needed.
  • 📂 DCIM and Pictures: Make sure you do not delete photos and videos linked to deleted messengers, if they are important to you.
  • System cache: To clear it, you can go into Recovery mode (usually the power button + volume up) and select the item Wipe Cache Partition.

Regular storage check allows you to keep the system clean and prevents the accumulation of “digital garbage”, which can slow down the file system system.

⚠️ Attention: Interfaces and menu item names may differ depending on the firmware version and device manufacturer. If you do not find the described item, look for a similar one in your version of Android.

Is it possible to restore a deleted app on Android 5?

Yes, if the application was deleted via Google Play, it can be found in the “My applications and games” section → “All” tab and installed again. If the application was a system application and was deleted via root or ADB, recovery is only possible by flashing the device or installing a backup copy.

Why is the “Delete” button gray and not clickable?

This means that the application is a system component of the operating system. The manufacturer has blocked the ability to remove it to protect the stability of the device. In this case, only the “Disable” function is available.

Is it safe to use apps to remove system garbage?

Using such apps (for example, Titanium Backup) is safe only if you have deep knowledge of the purpose of system packages. Removing critical components may result in a cyclic reboot (bootloop) and data loss.

Do I need to restart my phone after deleting each application?

No, this is not necessary. Android 5 handles uninstallation correctly in real time. A reboot is required only if errors occur or when deleting a large number of system files via ADB/Root.

What to do if, after deleting the application, the phone began to slow down?

The system application responsible for background processes or interface elements may have been deleted. Try resetting to factory settings (after saving the data) or restoring a deleted component through a computer if you have skills in working with ADB.