Deleting applications on Samsung Galaxy A10 seems like a simple task - just click "Delete" in the application menu. But what if, after uninstallation, the app continues to take up memory space, leaves traces on the system, or even recovers after a reboot? This is especially true for pre-installed applications from Samsung and Googlethat cannot be removed using standard methods.

In this article we will look at all possible ways to completely remove applications s Galaxy A10 โ€”from basic to advanced, including working with ADB, cleaning residual files and even resetting to factory settings. You will learn how to get rid of not only the APK itself, but also cache, data and system traces that can slow down your smartphone. And also why some applications come back after being deleted and how to avoid this.

Why standard deletion does not always work

When you delete an application via Settings โ†’ Applications, Android erases only the main .apkfile and part of the user ones data. However, the system remains:

  • ๐Ÿ—ƒ๏ธ Cache and temporary files โ€” can take up hundreds of megabytes in folders /data/data/ and /cache/.
  • ๐Ÿ“ Residual data โ€” settings, databases, configuration files (for example, shared_prefs).
  • ๐Ÿ”„ System links โ€” some applications (especially pre-installed ones) are registered in Android Manifest and can be restored after updating the OS.
  • ๐Ÿ“ฑ Files in external memory - photos, downloads, logs that the application saved on a memory card or in a folder Android/obb.

On Samsung Galaxy A10 the situation is complicated by the fact that the manufacturer blocks the removal of many system applications through the graphical interface. For example, Samsung Knox, Bixby (if it was preinstalled), Game Launcher or duplicate services Google cannot be removed without superuser rights. or ADB.

โš ๏ธ Attention: Some system applications are critical for the operation of One UI (Samsung shells). Removing them can lead to malfunctions of sensors, notifications, or even โ€œeternalโ€ loading of the smartphone. Before deleting, check the name of the package on the network.

Method 1: Standard removal through settings

This method is suitable for custom applicationsinstalled from Google Play or third-party sources. It will not work for pre-installed apps (for example, Samsung Health or Galaxy Store).

Instructions:

  1. Open Settings โ†’ Applications.
  2. Click on the three dots in the upper right corner and select Show system applications processes (if you need to remove a system application).
  3. Find the desired application in the list and tap on it.
  4. Click Delete (or Disableif the delete button is inactive).
  5. Confirm the action.

If the button Delete is not active, but only Disable or Uninstall updates, this means the application is protected by the system. In this case, proceed to the following methods.

โ˜‘๏ธ What to check before deleting

Done: 0 / 4
๐Ÿ“Š How often do you delete unnecessary ones applications?
Once a month
Only when memory runs out
Never delete
As needed

Method 2: Removal via Google Play (for custom applications)

If the application was installed via Google Play, you can delete it directly from the store. This method is convenient because it is synchronized with your account Google โ€”if you reinstall the application later, its settings may be restored.

How to remove:

  1. Open Google Play Market.
  2. Tap by profile avatar in the upper right corner.
  3. Select Manage applications and device โ†’ Management.
  4. Find the desired application in the list and click on the trash can (Delete).
  5. Confirm deletion.

The advantage of this method is automatic clearing of cache and data (if the application was not system). However, it is not suitable for apps installed from .apkfiles or preinstalled on Galaxy A10.

โš ๏ธ Attention: If, after removal via Google Play the application appears again after a reboot, then it was preinstalled by the manufacturer. In this case, removal via ADB or disabling is required (see the following sections).

Method 3: Disabling system applications (without uninstalling)

If the application cannot be removed using standard methods, you can disable. This hides it from the menu, stops background processes and frees up some RAM. However, the application files remain on the system and take up space in the internal memory.

How to disable:

  1. Go to Settings โ†’ Applications.
  2. Click on the three dots โ†’ Show system processes.
  3. Select the desired application (for example, Samsung Free or AR Emoji).
  4. Click Disable (if the button is active).
  5. Confirm the action in the window that appears.

Disabled applications:

  • โœ… Are not displayed in the menu.
  • โœ… Do not launch automatically.
  • โœ… Do not receive updates via Google Play.
  • โŒ Still take up memory space (from 10 to 500 MB depending on the application).
  • โŒ Can be restored after resetting the settings or updating the OS.
What system applications can be disabled without risk?

Safely disable:

- Samsung Free (if you don't use it)

- AR Emoji, AR Zone

- Game Launcher (if you don't play)

- Samsung Global Goals

- Bixby (if you do not use a voice assistant)

- Duplicate Google services (for example, Google Play Music, if you use YouTube Music).

Do not disable:

- Samsung Knox

- Secure Folder

- Google Play services (may disrupt the store)

- Phone, Contacts, Messages

Method 4: Complete removal via ADB (for advanced users)

ADB (Android Debug Bridge) is an Android debugging tool that allows you to remove system applications without root access. The method works on Samsung Galaxy A10, but requires connecting to a computer and enabling developer mode.

Warning: Incorrect use ADB can lead to malfunctions of the smartphone. Remove only those packages that you are sure of!

Instructions:

  1. Enable developer mode:
    • Go to Settings โ†’ About phone โ†’ Software information.
    • Click 7 times on Build numberuntil the notification โ€œYou have become a developerโ€ appears.
  2. Activate USB debugging:
    • Go back in Settings โ†’ Developer options.
    • Enable USB debugging.
  3. Connect the phone to the PC:
    • Use the original cable USB-Type C.
    • On your phone, select the mode File transfer (not "Charging").
  • Install ADB on your computer:
    • Download Platform Tools from the site Android.
    • Extract the archive into a folder C:\platform-tools.
    • Check the connection:
      adb devices

      Your serial number should be displayed Galaxy A10.

    • Find the application package name:
      adb shell pm list packages | grep "application_name"

      Example: for Samsung Free package name - com.samsung.android.app.spage.

    • Uninstall the application:
      adb shell pm uninstall -k --user 0 package_name

      The flag -k saves the cache and data, --user 0 indicates the current user.

    On the Samsung Galaxy A10, some system packages are protected by Knox policies. If the command returns the error "Failure [DELETE_FAILED_INTERNAL_ERROR]", try first disabling the application through the settings, and then repeat the command.

    Application Package name Can I delete via ADB
    Samsung Free com.samsung.android.app.spage Yes
    Bixby com.samsung.android.bixby.agent Partially (requires shutdown)
    Game Launcher com.samsung.android.game.gamehome Yes
    AR Emoji com.samsung.android.aremoji Yes
    Google Duo com.google.android.apps.tachyon Yes (if not system)
    ๐Ÿ’ก

    Before deleting via ADB, make a backup copy of the list of packages team adb shell pm list packages > packages.txt. This will help restore deleted applications if something goes wrong.

    Method 5: Cleaning residual files manually

    Even after deleting an application, files may remain on the system through ADB or standard methods. They can be found and deleted manually using a file manager with root access (for example, Root Explorer) or via ADB.

    Where to look for residual files:

    • ๐Ÿ“‚ /data/data/[package_name] โ€” the main application data.
    • ๐Ÿ“‚ /data/app/[package_name] โ€” APK and OBB files.
    • ๐Ÿ“‚ /sdcard/Android/obb/[package_name] โ€”additional files (for example, game cache).
    • ๐Ÿ“‚ /sdcard/Android/data/[package_name] โ€” external data.

    How to remove via ADB:

    adb shell
    

    su

    rm -rf /data/data/com.example.app

    rm -rf /data/app/com.example.app

    exit

    If you do not have root access, use the command without su, but some files may remain inaccessible.

    โš ๏ธ Attention: Deleting files from folders /data/ and /system/ without root access may lead to failures. If you are not sure, skip this step or use specialized utilities like SD Maid (requires root).

    Method 6: Reset to factory settings (last resort)

    If none of the methods helped, but the application continues to recover or take up space, remains full reset. This will delete all data from your phone, including apps, photos, contacts and settings. Use this method only if:

    • ๐Ÿ”„ The application critically interferes with the operation of the smartphone.
    • ๐Ÿ“ฑ You plan to sell or transfer the phone.
    • ๐Ÿ”ง Other methods did not work.

    How to reset:

    1. Create a backup copy of important data (photos, contacts, messages).
    2. Go to Settings โ†’ General management โ†’ Reset โ†’ Reset data.
    3. Select Reset and confirm the action.
    4. After reboot, set up the phone as new.

    After reset:

    • โœ… All user applications will be deleted.
    • โœ… System applications will return to their original state (but they can be deleted after ADB before the first update).
    • โŒ Pre-installed applications Samsung and Google will remain (they will have to be deleted separately).
    ๐Ÿ’ก

    Resetting to factory settings is the only way to completely clear the phone of viruses or deeply integrated applications, but it erases all user data without the possibility of recovery (unless a backup was made).

    Frequently asked questions

    Is it possible to remove Samsung Knox from the Galaxy A10?

    Samsung Knox is a system security component deeply integrated into the firmware. Removing it will lead to loss of warranty, sensor malfunctions (fingerprint, Secure Folder) and possible system instability. The maximum that can be done is to disable its updates via Google Play.

    Why does the application appear again after deletion?

    This happens with pre-installed applications that are protected by policies Samsung or Google. They are restored after:

    • OS update via OTA.
    • Reset to factory settings.
    • Reboot (if the application was only disabled and not deleted via ADB).

    Solution: remove such applications via ADB with flag --user 0 or use Debloater scripts (bootloader unlock required).

    How to find out which application takes up the most space?

    Go to Settings โ†’ Device care โ†’ Memory โ†’ Applications. Here a list of apps is displayed, sorted by space occupied. Click on any application to see details:

    • APK โ€” the size of the file itself. applications.
    • Data โ€”user files (saves, databases).
    • Cache โ€”temporary files (can be cleared without consequences).
    Is it possible to delete Google Play Services?

    No, Google Play Services is a critical component for operation Google Play, notifications, synchronization and many applications. Its removal will lead to:

    • Inability to download applications from Google Play.
    • Errors in work Gmail, YouTube, Google Maps.
    • Problems with push notifications.

    Maximum - you can disable its updates or delete updates to the factory version.

    How to restore a deleted system application?

    If you deleted a system application via ADB and it is needed for the phone to work, you can restore it:

    1. Through ADB (if there is a backup copy of the package).
    2. By resetting to factory settings.
    3. Flashing the phone via Odin (for experienced users).

    For Samsung Galaxy A10 the firmware can be downloaded from the website SamFW (choose the version for your model SM-A105F/DS or similar).