Have you noticed an unknown application on your smartphone App Market and are wondering where it came from? This is not uncommon: many users Android are faced with the sudden appearance of similar apps that they did not install deliberately. Most often App Market belongs to the category potentially unwanted software (PUP) or even malicious applications masquerading as alternative software stores.

In this article we will look at what constitutes App Market. how it penetrates the device, what security risks it poses, and - most importantly - how it is completely remove without a trace, including residual files and permissions. We will pay special attention to cases when standard removal through the settings does not work, and consider alternative methods for experienced users.

What is the App Market and why is it dangerous

App Market is a general name for applications that position themselves as alternative app stores for Android. However, in most cases they are not related to official services like Google Play or Galaxy Store. Such apps are often distributed through:

  • ๐Ÿ“ฆ Third-party APK files, downloaded from unverified sites (for example, when searching for โ€œfreeโ€ versions of paid games).
  • ๐Ÿ”— Malicious advertising bannersthat offer to โ€œupdateโ€ or โ€œspeed upโ€ the phone.
  • ๐Ÿ“ฑ Pre-installed software on some budget smartphones (especially Chinese brands).
  • ๐Ÿค– Others infected applicationsthat secretly install App Market as an addiction.

The main danger of such applications is:

  • ๐Ÿ›ก๏ธ Collection of personal data: access to contacts, SMS, call history, geolocation.
  • ๐Ÿ’ฐ Display of aggressive advertising, including pop-ups with fraudulent offers.
  • ๐Ÿ“ฅ Downloading additional software without your knowledge (other viruses, mining scripts).
  • ๐Ÿ”‹ Increased battery and traffic consumption due to background activity.
๐Ÿ“Š Have you ever encountered unknown applications on Android?
Yes, several times
Yes, but I deleted it myself
No, never
I'm not sure it was malware

App Market maybe masquerade as legitimate services using names like com.app.market, com.android.appmarket or system.appstore. Please note: official application stores are never installed automatically and do not ask to disable Google Play Protect.

โš ๏ธ Attention: Some versions App Market block access to security settings or disable the antivirus. If you notice this behavior, immediately skip to the section on removal via Safe Mode.

How to check if the App Market is malicious

Before deleting an application, make sure that it is really dangerous. Here are the signs that should alert you:

Sign What does this mean Action
The application appeared on its own, without your knowledge Probably installed through another virus or advertising Delete immediately
The name of the developer is unknown or suspicious (for example, "App Dev Team") Legitimate applications have verified publishers Check reviews on Google Play (if any)
The application is asking for unnecessary permissions (SMS, calls, admin rights) Typical behavior of spyware Revoke permissions in settings
Advertising appears even when the application is closed Adware (adware virus) Delete + check other installed apps
The application is not uninstalled in the standard way Uses administrator rights or system hooks Delete via Safe Mode or ADB

To check permissions App Market:

  1. Go to Settings โ†’ Applications โ†’ App Market.
  2. Click on Permissions.
  3. Pay attention to items like Reading SMS, Changing system settings or Launch at startup.
๐Ÿ’ก

If there is Device administratorin the list of permissions, first disable it in Settings โ†’ Security โ†’ Device administrators, otherwise deletion will be impossible.

We also recommend checking the application via VirusTotal:

  1. Download the APK file App Market using APK Extractor (available on Google Play).
  2. Upload the file to the website VirusTotal (will open in a new tab).
  3. View scan results from different antiviruses.

Standard removal of App Market through Android settings

If the application does not use administrative rights and is not a system application, it can be deleted in the standard way:

Open Settings โ†’ Applications|Find App Market in the list|Click Delete or Uninstall|Confirm action|Reboot phone-->

However, users often encounter problems:

  • ๐Ÿšซ The button Delete is inactive (gray).
  • ๐Ÿ”„ After deleting the application appears again.
  • ๐Ÿ›‘ The system displays an error "Failed to delete".

In such cases, try:

  1. Disable application (if deletion is not available): in the application menu, click Disable โ†’ OK.
  2. Uninstall updates: if the application is a system one, return it to the factory version via โ‹ฎ โ†’ Uninstall updates.
  3. Clear cache and data: in the application menu select Storage โ†’ Clear cache/Clear data.
โš ๏ธ Attention: If after disconnecting App Market other phone functions stop working (for example, camera or Wi-Fi), then the application is associated with the firmware. In this case, it is better to contact a specialist or perform a reset to factory settings.

Removing the App Market through Safe Mode

If the application blocks deletion or is restored after a reboot, use Safe Mode - a mode in which everything is disabled third party apps. Instructions:

  1. Start Safe Mode:
    • On most smartphones: hold down the button Power, then hold your finger on Turn off โ†’ a prompt will appear to go to Safe Mode.
    • On Samsung: press Power + Volume Down until the logo appears.
    • On Xiaomi: press Power, then hold Turn off power โ†’ Safe Mode.
  • T Safe Mode try to remove App Market through the settings (see previous section).
  • Restart the phone in normal mode.
  • If the application was deleted, but appeared again after exiting Safe Mode, that means it:

    • ๐Ÿ“Œ Has administrator rights (see section below).
    • ๐Ÿ“ฆ Installed as system (required ADB).
    • ๐Ÿ”„ Associated with another virus that restores it.
    What to do if Safe Mode does not help?

    If even in Safe Mode App Market is not removed, this may mean that:

    1. The application is built into the firmware (often found on cheap Chinese smartphones).

    2. The virus has modified system files, blocking removal.

    In such cases, only a complete reset (Settings โ†’ System โ†’ Reset settings) or flashing the device will help. Before doing this, be sure to save important data!

    Removal via ADB (for advanced users)

    If App Market installed as a system application, you can remove it using Android Debug Bridge (ADB). This method requires connecting your phone to a computer and basic knowledge of the command line.

    Preparation:

    1. Download ADB Tools from the official website Android Developers.
    2. Enable USB Debugging on your phone: Settings โ†’ About phone โ†’ Build number (press 7 times) โ†’ return to Settings โ†’ System โ†’ For Developers โ†’ Debugging USB.
    3. Connect the phone to the PC and confirm trust in the computer.

    Removal via ADB:

    1. Open the command line (cmd) in the folder with ADB.
    2. Enter the command to check connections:
      adb devices

      The name of your device should appear.

    3. Get a list of all packages:
      adb shell pm list packages | grep "market"

      Or to search by name:

      adb shell pm list packages | grep -i "app"
    4. Find a package App Market (for example, com.app.market.v1).
    5. Remove it:
      adb shell pm uninstall -k --user 0 com.app.market.v1

      Replace com.app.market.v1 with the real name of the package.

    If the command did not work, try:

    • Remove for all users:
      adb shell pm uninstall -k com.app.market.v1
    • Disable the package (if deletion is impossible):
      adb shell pm disable-user --user 0 com.app.market.v1
    โš ๏ธ Attention: Incorrect use ADB can lead to unstable operation of the phone. Do not remove system packages if you are not sure of their purpose! For example, deleting com.android.vending (Google Play) will disrupt the operation of the application store.

    Additional security measures after uninstallation

    Removal App Market is only the first step. To prevent re-infection:

    • ๐Ÿ” Check other applications:
      • Uninstall all unknown apps installed during the same period.
      • Pay attention to applications with suspicious permissions (for example, access to SMS or administrator rights).
    • ๐Ÿ›ก๏ธ Update your antivirus:
      • Install a reliable antivirus (for example, Malwarebytes, Bitdefender or Kaspersky).
      • Run a full scan device.
    • ๐Ÿ”’ Set up security:
      • Enable Google Play Protect: Play Market โ†’ Profile โ†’ Play Protect โ†’ Scan.
      • Disable installation from unknown sources: Settings โ†’ Security โ†’ Unknown sources.
    • ๐Ÿ“ฑ Update the system:
      • Check for Android updates: Settings โ†’ System โ†’ Software update.
      • Outdated versions The OS is vulnerable to new viruses.

    We also recommend:

    • ๐Ÿ”„ Reset advertising ID: Settings โ†’ Google โ†’ Advertising โ†’ Reset advertising ID.
    • ๐Ÿ“Š View account activity: check if there were unauthorized logins to your Google account.
    • ๐Ÿ”‹ Clear autoboot: some viruses are added to autorun. Use applications like Autostarts (requires root) to check the list.
    ๐Ÿ’ก

    If after deleting App Market the phone begins to work slower or errors appear, reset the cache via Recovery: turn off the device, hold down Power + Volume Up, select Wipe Cache Partition.

    What to do if the App Market returned after being deleted

    If the application appears again, this means that:

    1. It built into the firmware (often on cheap smartphones).
    2. It installs another viruswhich remained on the device.
    3. It associated with the system update (for example, through OTA packages).

    Solutions:

    • ๐Ÿ”„ Reset to factory settings:
      1. Save important data (photos, contacts) to your PC or to the cloud.
      2. Go to Settings โ†’ System โ†’ Reset settings โ†’ Delete all data.
      3. After resetting, do not restore data from backups - they may contain a virus!
  • ๐Ÿ“ฑ Flashing the phone:
    • Download the official firmware for your model from the manufacturer's website.
    • Use tools like SP Flash Tool (for Mediatek) or Odin (for Samsung).
    • This method will delete all data, but is guaranteed to clear the system.
  • ๐Ÿ›ก๏ธ Checking for root access:
    • Some viruses get root access, which makes removal more difficult.
    • Check for root using Root Checker (available on Google Play).
    • If there is a root, but you did not install it, this is the work of a virus. A complete flashing will be required.
    • If you are not confident in your abilities, it is better to contact a service center. This is especially true for flashing - incorrect actions can turn the phone into a โ€œbrick.โ€

      โš ๏ธ Attention: On some smartphones (for example, Huawei or Xiaomi with global firmware) system applications can be restored after updating. In this case, only blocking updates for a specific package through ADB:
      adb shell pm hide com.app.market.v1

      (required Android 10+).

      FAQ: Frequently asked questions about the App) will help. Market

      Is it possible to simply disable the App Market instead of deleting it?

      Disabling (Settings โ†’ Applications โ†’ Disable) will stop the app, but will not delete its files. The virus may continue to consume resources in the background or recover after a system update.

      App Market appeared after installing the game. What should I do?

      Most likely, the game contained a hidden installer:

      1. The application itself App Market.
      2. The game after which it appeared.
      3. Check other installed apps for suspicious ones.

      In the future, download games only from Google Play and read reviews before installing.

      Antivirus does not see the App Market as a virus. normal?

      Some antiviruses do not recognize App Market as a threat if it does not behave aggressively. However, this does not mean that the application is safe. Focus on:

      • Unknown developer.
      • Suspicious permissions (SMS, administrator) rights).
      • Unnecessary functionality (for example, an "accelerator" with access to contacts).

      In such cases, it is better to remove the application manually.

      How to prevent the installation of similar applications in the future?

      Follow these rules:

      • ๐Ÿ”’ Install apps only from Google Play.
      • ๐Ÿ“– Read reviews and check the developer before installation.
      • ๐Ÿ›ก๏ธ Turn on Google Play Protect and scan your device regularly.
      • ๐Ÿšซ Disable installation from unknown sources (Settings โ†’ Security).
      • ๐Ÿ”„ Update Android and applications to the latest versions.
      Can App Market steal bank card data?

      If the application has permissions to:

      • Read SMS (can intercept confirmation codes).
      • Display on top of other windows (can replace data entry forms).
      • Access to notifications (can see codes from instant messengers).

      โ€”then theoretically it can be used to steal financial data. If you entered passwords or card codes on an infected device, immediately:

      1. Change passwords for banking applications and mail.
      2. Cancel all active sessions in your bank account.
      3. Install two-factor. authentication (for example, through Google Authenticator).