Android

How to Completely Remove Apps on Android: Step-by-Step Guide

In this guide, you'll learn how to completely remove apps on Android, including tricky cases: pre-installed system utilities and programs with aggressive ads. We cover the standard method, ADB-based removal, and cleaning up residual files.

Updated at February 16, 2026
10-15 min
Easy
FixPedia Team
Применимо к:Android 8.0+

Introduction / Why It's Needed

Removing unnecessary apps isn't just about tidiness. It's a direct path to:

  • Freeing up precious storage space on your internal memory.
  • Improving battery life (background processes will no longer drain the battery).
  • Eliminating data leaks and enhancing privacy.
  • Cleaning the system of adware (bloatware) and 'sticky' apps that can't be uninstalled by default.

This guide covers all scenarios: from standard uninstallation via the interface to advanced ADB methods for stubborn software.

Requirements / Preparation

Before you begin, ensure that:

  1. You have access to the device (unlocked).
  2. For standard uninstallation, nothing else is needed.
  3. For uninstallation via ADB:
    • Android SDK Platform-Tools are installed on your computer (Windows/macOS/Linux).
    • On your phone, USB debugging is enabled in Settings → General → Developer options.
    • USB drivers are installed (for Windows).
  4. For removing system apps on certain firmware (e.g., MIUI, EMUI), root access may be required.

Step-by-Step Guide

Step 1: Standard Uninstallation via Settings

This is the primary method for apps you installed from the Play Store or manually.

  1. Open Settings (⚙️).
  2. Go to the Apps section (the name may vary slightly: "Apps & notifications", "Application manager").
  3. In the list, find the app you want to remove. If the list is long, use the search by name.
  4. Tap the app.
  5. Press the Uninstall button (sometimes hidden under the three-dot menu).
  6. In the confirmation dialog, tap OK or Uninstall.

💡 Tip: If the "Uninstall" button is inactive or missing, it's likely a system app. Move on to the next step.

Step 2: Uninstallation via Google Play Store

An alternative method that sometimes provides a cleaner uninstall.

  1. Launch the Google Play Store app.
  2. Tap your avatar in the top-right corner.
  3. Select Manage apps & device.
  4. Go to the Manage tab → Installed.
  5. Find the desired app in the list.
  6. Tap it, then select Uninstall.
  7. Confirm the action.

Step 3: Removing 'Sticky' Apps and Ads via ADB

This method allows you to remove apps that hide the uninstall button (often manufacturer utilities or ad modules).

  1. Find the package name of the app you want to remove. The easiest way is to install the "Package Name Viewer" app (e.g., by 'Android Developer') from the Play Store, find the app in the list, and copy its name (format: com.example.app).
  2. Connect your phone to the computer via USB. On the phone, when prompted "Allow debugging?", press OK.
  3. Open a terminal or command prompt on the computer and run the command to check the connection:
    adb devices
    
    Your device should appear in the list with status device.
  4. Run the uninstall command (replace <package_name> with the actual name):
    adb shell pm uninstall --user 0 <package_name>
    
    Example: adb shell pm uninstall --user 0 com.facebook.katana
  5. On success, you'll see Success. The app will disappear from the installed list for the current user.

⚠️ Important: The --user 0 flag removes the app only for your profile. The system part (if any) will remain in the /system/ partition but will be disabled. On non-rooted devices, this is the optimal and safe option.

Step 4: Cleaning Residual Data (Cache, Files)

Even after uninstallation, "leftovers" may remain on the device. You need to remove them manually.

  1. Open a file manager (built-in or third-party, e.g., Solid Explorer, Google Files).
  2. Navigate to the Internal storage (or Phone storage) folder.
  3. Find and open the Android folder.
  4. Inside, you'll see two key folders:
    • data — where apps store their data (settings, databases, cache). Delete the folder with the removed app's package name (e.g., com.spotify.music).
    • obb — where additional resources for games and heavy apps are stored. Delete the corresponding folder if it exists.
  5. Also check the root of internal storage for folders named after the removed app (e.g., Spotify) and delete them.
  6. System cache cleanup (optional): Go to SettingsStorageInternal storageFree up space (or similar). The system will offer to clear app cache and temporary files. This is a safe operation.

Verifying the Result

  1. Open SettingsApps. The removed app should no longer be in the list.
  2. Go to SettingsStorage. Check how much space was freed (the value may slightly differ from the app's size due to residual files).
  3. Ensure the removed app's icon has disappeared from the home screen and app drawer.
  4. To verify via ADB (if you used it), you can run:
    adb shell pm list packages | grep <part_of_package_name>
    
    If the package isn't in the output — uninstall was successful.

Possible Issues

  • Error Failure [DELETE_FAILED_INTERNAL_ERROR] or Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE] with ADB: This means the app is a system and protected app (e.g., part of Google Play Services). Removing it without root privileges is usually impossible. You can only disable it via adb shell pm disable-user --user 0 <package_name>.
  • Residual files won't delete: You might not have permission to delete folders in /Android/data/ (if they were created under system ownership). Try deleting them via the same file manager with root privileges (if available) or reboot the device and try again.
  • The app reappears after reboot: This can happen if the firmware manufacturer (OEM) has hard-integrated the app into the system image. Without root and reflashing (which is risky), there's nothing you can do. The only option is to disable it and turn off all its notifications.
  • Not enough space for uninstallation: On very cluttered devices, the uninstall process may fail due to lack of temporary space. Free up some space manually (delete old photos/videos) and try again.
  • The 'Uninstall' button is grayed out for a regular app: Check if the app is installed for all users (e.g., via a work profile). You may need to switch to the primary user or remove the app from the work profile in its settings.

F.A.Q.

How does uninstalling via 'Settings' differ from uninstalling via Google Play?
Can a deleted app be restored?
What to do if the 'Uninstall' button is inactive for a system app?
Why is cleanup of residual files necessary? Doesn't the app delete them itself?

Hints

Preparation: Enable Unknown Sources and USB Debugging
Standard Uninstall via System Settings
Uninstall via Google Play Store
Force Uninstall via ADB (for Ad-heavy/System Apps)
Cleanup of Residual Files and Cache
FixPedia

Free encyclopedia for fixing errors. Step-by-step guides for Windows, Linux, macOS and more.

© 2026 FixPedia. All materials are available for free.

Made with for the community