Have you accidentally deleted an important application from your smartphone and now you donโ€™t remember its name? Or want to check which apps have been uninstalled from your device in the last month? You can restore the list of deleted applications on Android-smartphone and now you donโ€™t remember its name? Or want to check which apps have been uninstalled from your device in the last month? Recover list of deleted applications on Android in several ways - from simple (through history Google Play) to advanced (using ADB or a file manager with rights root).

In this article we will examine 5 working methodshow to find deleted applications, including hidden system utilities and third-party tools. You will learn what data is saved on the system after uninstallation, how to retrieve it without risk to the device, and what to do if the application has disappeared from the download history. And also - how to restore the APK file of a deleted app if it is no longer available on Google Play.

1. Viewing your download history on Google Play

The fastest way to see the list of deleted applications is to look at your account's download history GoogleThis method works even without root-right and does not require installation of additional software. However, there are nuances here: the history does not store all uninstalled apps, but only those that were installed through official store.

To view the list:

  • ๐Ÿ“ฑ Open Google Play Market on your phone.
  • ๐Ÿ‘ค Tap on your profile avatar in the upper right corner.
  • ๐Ÿ“‹ Select Manage applications and device โ†’ Management.
  • ๐Ÿ” Go to the tab Not installed โ€”here All apps that have ever been downloaded and later deleted will be displayed.

If the application is not in this list, it may have been installed from a third-party source (APK file) or deleted a long time ago - Google Play stores history for a limited time (usually up to 1 year). Also, some system utilities may not be displayed here.

๐Ÿ’ก

To avoid losing important applications in the future, export the list of installed software using the utility App Backup & Restore (available on Google Play). It creates a backup copy of APK files and metadata, including the installation date.

2. Using a file manager with root access

If your device has superuser rights ( superuser rights (root), you can manually check the system folders where Android stores information about installed and removed applications. This method is suitable for experienced users, as it requires caution when working with system files.

Instructions:

  1. Install a file manager with support root (for example, Root Explorer or Solid Explorer).
  2. Navigate to the path:
    /data/system/package_cache/

    Cached data about packages (including deleted ones) is stored here.

  3. Open the file packages.xml or packages.list in the folder:
    /data/system/

    It contains records of all applications ever installed, including uninstalled ones (look for lines with the attribute deleted="true").

โš ๏ธ Attention: Do not edit these files manually - this may cause the system to crash. If you only need the names of uninstalled apps, copy the files to your computer and view them using a text editor (for example, Notepad++).

What to do if the /data/system folder is inaccessible?

If the file manager does not show the folder /data, check:

1. Availability of root access (use Root Checker).

2. Manager settings - enable display of hidden and system files.

3. Android version: starting from Android 10, access to some folders is limited even with root. In this case, use ADB (see next section).

3. ADB commands for searching for deleted packages

Tool Android Debug Bridge (ADB) allows you to get a list of all packages, including uninstalled ones, without having to manually view system files. This method is universal and works on most devices, but requires connecting the smartphone to the computer.

Step-by-step guide:

  1. Download and install ADB on your PC (for example, via Platform Tools from Google).
  2. Enable USB Debugging on your phone (Settings โ†’ About phone โ†’ Build number - tap 7 times to unlock developer mode, then return to Settings โ†’ System โ†’ For Developers).
  3. Connect the device to the computer and run the command in the terminal:
    adb shell pm list packages -u

    The flag -u will show only uninstalled packages.

The result will look like this:

package:com.example.app1 (deleted)

package:org.another.app (deleted)

To get application names (not just packages), use the command:

adb shell dumpsys package | grep "Package \[.*\]"

Install drivers for your device|Download Platform Tools from the official Google website|Enable USB debugging on your phone|Check the connection with the command adb devices-->

4. Third-party utilities for restoring the application list

If the previous methods did not help, you can use specialized apps that scan the device for traces of deleted applications. Some of them work without root, but provide limited information.

Top 3 utilities:

Name Root required? Functions Link
App Backup & Restore โŒ No Creates APK backups and keeps a log of installations/uninstallations Google Play
Debloater (Universal Android Debloater) โœ… Yes Shows all packages, including deleted system applications GitHub
SD Maid โœ… Yes Scans residual files of uninstalled apps and cache Google Play

โš ๏ธ Attention: Applications from third-party sources (not Google Play) may contain malicious code. Before installation, check the reviews and reputation of the developer on the forums (for example, XDA Developers or 4PDA).

For maximum efficiency, combine utilities: for example, use App Backup & Restore to backup current applications and SD Maid to search for traces of deleted ones.

Via Google Play|Using a file manager (root)|ADB commands|Third-party utilities|I donโ€™t know, I havenโ€™t tried it yet-->

5. Recovering APK files of deleted applications

If you need more than just that. find out the name of the deleted application, but also restore its functionalityyou can try to find its APK file. There are several ways:

  • ๐Ÿ” Google Play cache search:

    Some APK files remain in the store cache after deletion. Check the folder:

    /data/app-lib/

    or (on new versions of Android):

    /data/app/

    Look for files with the extension .apk and package name (for example, com.whatsapp-1.apk).

  • ๐ŸŒ Downloading from third-party sources:

    Use services like APKMirror, APKPure or Uptodownto download an APK by package name (for example, com.facebook.katana for Facebook). Pay attention to the version and architecture (ARM/x86).

  • ๐Ÿ“ฆ Titanum Backup:

    If you have previously used Titanium Backup (requires root), check the folder with backups:

    /sdcard/TitaniumBackup/

    APK and data of deleted applications can be stored here.

โš ๏ธ Attention: Installing APK from unknown sources can be harmful device. Always check the file hash (MD5/SHA-1) on the developerโ€™s website and use an antivirus (for example VirusTotal) to scan before installation.

๐Ÿ’ก

Even if you find the APK of the deleted application, its data (settings, cache, accounts) may be lost. For a complete recovery, you need a backup made BEFORE deletion (for example, through Titanium Backup or the built-in Android backup function).

6. Checking system logs for traces of deleted applications

System logs (logcat) contain records of all actions on the device, including installation and removal of apps. This method is suitable for advanced users, as it requires the analysis of large amounts of data.

How to view logs:

  1. Connect the device to the PC and open a terminal with ADB.
  2. Run the command to view logs in real time:
    adb logcat | grep -i "package removed"

    Or save the logs to a file for further analysis:

    adb logcat -d > log.txt
  3. Look for lines with mention PackageManager and status REMOVED.

Example of a log entry:

05-20 14:30:45.123  1234  5678 I PackageManager: Removing package:com.example.app

For convenience, use utilities like Logcat Reader (available in Google Play), which filter and sort logs into categories.

How to find logs without ADB?

If you do not have access to a PC, install the application on your phone aLogcat (required root for full access). It allows you to view and save logs directly on the device. Filter entries by keyword PackageManager.

Common errors and how to avoid them

When searching for deleted applications, users often encounter typical problems. Here's how to solve them:

  • ๐Ÿ”„ "There is no 'Not Installed' tab in Google Play:

    Update Google Play Store to the latest version. If the problem persists, clear the application cache (Settings โ†’ Applications โ†’ Google Play Store โ†’ Storage โ†’ Clear cache).

  • ๐Ÿšซ "ADB does not see the device":

    Check if USB debugging is enabled and install drivers for your smartphone model (for example Samsung USB Drivers for Samsung devices. Also try a different USB cable.

  • ๐Ÿ”’ "No access to the /data folder":

    Starting from Android 11, Google has tightened access to system partitions. If you do not have rootuse ADB or specialized utilities (for example, Scoped Storage Access Framework).

If none of the methods worked, the application may have been deleted a long time ago and its traces have been erased by the system. In this case, try to remember the keywords from the name or app functions and find its analogue in Google Play.

Is it possible to restore a deleted application along with its data (for example, game saves)?

Yes, but only if you have one made before deletion. utilities like backup, made before removal. Utilities like Titanium Backup (requires root) or Android's built-in backup feature (Settings โ†’ System โ†’ Backup). Without backup, the data will be lost, even if you reinstall the APK.

Why are some deleted applications missing from Google Play history?

Google Play stores download history for a limited time (usually up to 1 year). Also not displayed in the list:

  • Applications installed from APK (not through the store).
  • System utilities pre-installed by the manufacturer.
  • apps deleted from the device before linking the Google account.

Is it possible to find out who deleted the application (for example, if others used the phone)?

Without specialized software, it is impossible to track who exactly uninstalled the app. However, you can check the system logs (logcat) for the presence of delete commands at certain times. This will require rootrights and knowledge of working with ADB.

What to do if the deleted application is no longer available on Google Play?

In this case:

  1. Try to find the APK on trusted resources (APKMirror, APKPure).
  2. Check if there is an alternative in F-Droid (open source store).
  3. Contact the developer through the official website or social networks - sometimes they provide APKs upon request.

โš ๏ธ Be careful with APKs from unknown sources - they may contain viruses or spyware Software.

How to prevent accidental deletion of important applications?

Some tips:

  • ๐Ÿ”’ Set a password on Google Play Store (Settings โ†’ Authentication โ†’ Required authentication for purchases).
  • ๐Ÿ“Œ Pin important applications to the home screen (long press โ†’ Pin).
  • ๐Ÿ“ฆ Regularly create backups via Google Drive or Titanium Backup.
  • ๐Ÿ›ก๏ธ Use launchers with deletion protection (for example, Nova Launcher with the option Desktop lock table).