You are trying to delete an application on Android, but does the system display the message โ€œApplication not foundโ€ - although its icon is still hanging on the screen, and notifications continue to arrive? Or, worse, the app takes up space in memory, but is not displayed either in Settings โ†’ Applicationsor in the menu Google Play? This problem is familiar to millions of users, and its reasons lie deeper than it seems.

In 80% of cases, the โ€œdisappearanceโ€ of an application is due to damage to system tags (when Android loses the link to the APK file), hidden updates (when the app becomes part of the system partition) or virusesmasquerading as deleted apps. Less often are the culprits errors when transferring data between devices via Smart Switch or Titanium Backupwhen โ€œghostโ€ files remain in the system without correct registration. In this article - 5 working methods find and remove such an application, including methods for devices without rootrights.

Why the application โ€œdisappearedโ€ but continues to work

Before proceeding with deletion, it is important to understand problem mechanism. Here are the key reasons why Android the application does not see, but it continues to function:

  • ๐Ÿ”„ Updating to the system application: some apps (for example, Facebook or Google Duo) after updating through Play Market to the section /system/priv-app, where they cannot be deleted using standard methods.
  • ๐Ÿ‘ป Residual files after uninstallation: when deleted via ADB or third-party installers (for example, APKMirror) may remain .odex-files or cache in /data/app-lib.
  • ๐Ÿฆ  Viral activity: some Trojans (for example, HiddenAds) replace application icons and hide them from Package Manager, but continue to show ads.
  • ๐Ÿ”ง Data migration errors: after resetting the settings or transferring to a new phone via Samsung Smart Switch there may be โ€œbrokenโ€ links to remote apps.

The problem occurs especially often on devices with custom firmware (for example, LineageOS or MIUI), where manufacturers block access to system partitions. Also at risk are smartphones with unlocked bootloaderwhere users manually deleted system APKs without consequences for dependencies.

๐Ÿ“Š What problem did you encounter?
The application is on the screen, but not in the settings
The app has been removed, but notifications are coming
I canโ€™t remove pre-installed software
Another problem

Method 1: Search through โ€œSettingsโ€ (hidden filters)

The first step is to check all possible filters in the application menu. Many users do not know that Android hides by default:

  1. System applications (for example, Google Play Services or Android System WebView).
  2. Disabled apps (which are not generally shown list).
  3. APK with damaged manifests (their icons may be displayed, but their names are not).

Instructions for Android 10โ€“14:

  1. Open Settings โ†’ Applications.
  2. Tap on the three dots (โ‹ฎ) in the upper right corner and select Show system (on some firmware - Filter โ†’ All applications).
  3. Scroll down the list and pay attention to applications with icons are gray these are disabled or damaged apps.
  4. If the application you need is not there, try entering its name in search bar at the top of the screen.

โ˜‘๏ธ What to check in the settings

Done: 0 / 4

On devices Samsung (for example, Galaxy S23 or A54) the path may differ:

Settings โ†’ Device care โ†’ Memory โ†’ Applications (three dots) โ†’ Sorting โ†’ System
โš ๏ธ Attention: On some firmware (for example, ColorOS from Oppo), system applications cannot be deleted even through ADB without root. In this case, all that remains is disable the app.

Method 2: Using ADB (without root access)

If the application is not displayed in the interface, but you know it package name (for example, com.facebook.katana for Facebook), you can delete it through Android Debug Bridge (ADB). This method even works on non-rooted devices.

Step-by-step guide:

  1. Enable USB debugging:
    Settings โ†’ About phone โ†’ Build number (tap 7 times)
    

    Settings โ†’ System โ†’ For developers โ†’ USB debugging

  2. Connect your phone to the PC, install ADB Tools and execute command:
    adb devices

    (your device should appear).

  3. Get a list of all packages:
    adb shell pm list packages

    Look for the name of the desired application in the output.

  4. Uninstall the package with the command:
    adb shell pm uninstall -k --user 0 com.package name

    (replace com.package name with the real name).

If the command returns an error DELETE_FAILED_INTERNAL_ERROR, try:

  • ๐Ÿ”น Add flag --user 0 (will delete only for the current user).
  • ๐Ÿ”น Use adb shell pm uninstall -k (saves cache and data).
  • ๐Ÿ”น Reboot the device and try again.
What to do if ADB does not see the device?

1. Make sure the drivers are installed (download from the phone manufacturer's website).

2. Try another USB cable (preferably the original one).

3. Enable the "File Transfer" mode when connecting.

4. On Windows, run ADB as administrator.

ADB Error Cause Solution
device unauthorized Debugging access on the phone is not confirmed Confirm the request on the screen smartphone
no devices/emulators found The drivers are not installed or the cable is faulty Reinstall the drivers, try a different USB port
DELETE_FAILED_DEVICE_POLICY_MANAGER The application is protected by administrator policy Disable it in Settings โ†’ Security โ†’ Device administrators

Method 3: Removal via Safe Mode (if a virus is to blame)

If the application behaves like virus (shows ads, redirects in the browser, but is not deleted), try safe mode. In this mode Android loads without third-party apps, which allows you to remove the attacker.

How to run Safe Mode:

  • ๐Ÿ“ฑ On most devices: press the power button โ†’ hold your finger on Turn off โ†’ a prompt will appear to switch to safe mode.
  • ๐Ÿค– On Samsung: turn off the phone โ†’ turn on, hold Volume down until boot.
  • ๐ŸŽ On Xiaomi/Redmi: hold Volume up + Power when turning on.

In safe mode:

  1. Check the list of applications in Settings โ†’ Applications โ€”virus software should appear.
  2. Remove it in the standard way.
  3. If removal is blocked, use ADB (see Method 2).
  4. Reboot the phone in normal mode.
๐Ÿ’ก

If the application is still not visible in safe mode, check the folder /data/app through a file manager with root access (for example, Root Explorer). Look for files with the extension .apk, the name of which contains part of the name of the virus.

Method 4: Manual removal through a file manager (for advanced)

If you have root access, you can remove the application manually through a file manager (for example, FX File Explorer or Solid Explorer). This method is suitable for system applicationsthat are not removed through ADB.

Step-by-step guide:

  1. Open a file manager with support root and go to:
    /data/app/

    or for system applications:

    /system/priv-app/
    

    /system/app/

  2. Find the folder with the package name (for example, com.android.chrome-1).
  3. Delete entire folder (not just the APK file!).
  4. Reboot the device.

Warnings:

  • ๐Ÿšจ Removing system files may disable the phone (for example, deleting Google Services Framework will lead to to the inability to log into your account).
  • ๐Ÿ” Before deleting do backup copy folders /system via TWRP or Titanium Backup.
  • ๐Ÿ”„ If after deleting the phone does not turn on, try flash stock firmware via Odin (for Samsung) or Fastboot (for Pixel/Xiaomi).
๐Ÿ’ก

Removing through a file manager is an extreme method. If you are not sure of the name of the package, use ADB or specialized utilities like App Inspector for analyzing installed apps.

Method 5: Reset settings (if all else fails)

If all the previous methods did not work, remains hard reset (hard reset). This will remove all data from the device, including hidden applications, viruses and damaged files. Before resetting:

  • ๐Ÿ“ฑ Save important data (photos, contacts, messages) on Google Drive or PC.
  • ๐Ÿ” Make sure you know the login and password for Google account (confirmation will be required after resetting).
  • ๐Ÿ“‹ Write down the IMEI of the phone (dial *#06#), in case you need to restore through a service center.

How to reset:

  1. On most devices:
    Settings โ†’ System โ†’ Reset settings โ†’ Delete all data
  2. On Samsung:
    Settings โ†’ General management โ†’ Reset โ†’ Reset data
  3. On Xiaomi:
    Settings โ†’ About phone โ†’ Reset settings
โš ๏ธ Attention: On devices s MIUI 12+ i One UI 4+ after the reset may be required confirming the old password (even if you did not install it). If you forgot your password, you will have to flash your phone via Fastboot.

How to prevent the appearance of โ€œghostโ€ applications

To prevent the problem from recurring, follow these simple rules:

  • ๐Ÿ›ก๏ธ Install applications only from Google Play (avoid APKs from third-party sites).
  • ๐Ÿ”„ Regularly check the list of applications in Settings โ†’ Applications โ†’ Unused and delete unnecessary ones.
  • ๐Ÿ“ฆ Before deleting system APKs via ADB check them on the website APKMirror โ€”some apps are critical for operation Android.
  • ๐Ÿ” Use antiviruses with a scanning function system partitions (for example, Malwarebytes or Bitdefender).

If you often install custom firmware or modify the system, enter change log (for example, in Notion or Google Keep), where you record:

  • Name of remote system APK.
  • Commands ADBthat were performed.
  • Firmware versions before and after updates.
๐Ÿ’ก

To automatically monitor changes in the system, use the application SysLog (requires root). files and packages, which will help roll back unwanted changes.

FAQ: Frequently asked questions about deleting invisible applications

Is it possible to delete a system application without root?

Yes, but not completely. ADB you can delete it only for the current user. command adb shell pm uninstall -k --user 0 package name. Complete removal requires root or custom recovery.

Why does the application appear again after uninstallation?

This happens due auto-updates (for example, Google Play recovers deleted system apps) or virusesthat reinstall themselves. Disable auto-updates in Play Market โ†’ Settings โ†’ Auto-update applications and check your phone with an antivirus.

How to find the package name application, if it is not displayed in the settings?

Use utilities like App Inspector (available in Play Market) or command adb shell pm list packages | grep "part of the name". You can also find out the package name via APK analyzers like JADXif you have an APK file.

What to do if, after deleting the system APK, the phone does not turn on?

You need to flash stock firmware via Odin (for Samsung), Fastboot (for Pixel/Xiaomi) or SP Flash Tool (for Mediatek). If you have no experience, contact a service center - independent restoration can lead to loss of IMEI.

Is it possible to restore a deleted system application?

Yes, if you have backup via TWRP or Titanium Backup. You can also extract the APK from the stock firmware (for example, from the site SamFW for Samsung) and install it via ADB:

adb install file_name.apk