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.
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:
- Go to
Settings โ Applications โ App Market. - Click on
Permissions. - Pay attention to items like
Reading SMS,Changing system settingsorLaunch 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:
- Download the APK file App Market using APK Extractor (available on Google Play).
- Upload the file to the website VirusTotal (will open in a new tab).
- 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
Deleteis inactive (gray). - ๐ After deleting the application appears again.
- ๐ The system displays an error
"Failed to delete".
In such cases, try:
- Disable application (if deletion is not available): in the application menu, click
DisableโOK. - Uninstall updates: if the application is a system one, return it to the factory version via
โฎ โ Uninstall updates. - 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:
- Start Safe Mode:
- On most smartphones: hold down the button
Power, then hold your finger onTurn offโ a prompt will appear to go toSafe Mode. - On Samsung: press
Power + Volume Downuntil the logo appears. - On Xiaomi: press
Power, then holdTurn off powerโSafe Mode.
- On most smartphones: hold down the button
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:
- Download ADB Tools from the official website Android Developers.
- Enable
USB Debuggingon your phone:Settings โ About phone โ Build number(press 7 times) โ return toSettings โ System โ For Developers โ Debugging USB. - Connect the phone to the PC and confirm trust in the computer.
Removal via ADB:
- Open the command line (
cmd) in the folder with ADB. - Enter the command to check connections:
adb devicesThe name of your device should appear.
- 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" - Find a package App Market (for example,
com.app.market.v1). - Remove it:
adb shell pm uninstall -k --user 0 com.app.market.v1Replace
com.app.market.v1with 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.
- Enable Google Play Protect:
- ๐ฑ Update the system:
- Check for Android updates:
Settings โ System โ Software update. - Outdated versions The OS is vulnerable to new viruses.
- Check for Android updates:
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:
- It built into the firmware (often on cheap smartphones).
- It installs another viruswhich remained on the device.
- It associated with the system update (for example, through OTA packages).
Solutions:
- ๐ Reset to factory settings:
- Save important data (photos, contacts) to your PC or to the cloud.
- Go to
Settings โ System โ Reset settings โ Delete all data. - After resetting, do not restore data from backups - they may contain a virus!
- 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.
- 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.
- The application itself App Market.
- The game after which it appeared.
- Check other installed apps for suspicious ones.
- Unknown developer.
- Suspicious permissions (SMS, administrator) rights).
- Unnecessary functionality (for example, an "accelerator" with access to contacts).
- ๐ 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.
- 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).
- Change passwords for banking applications and mail.
- Cancel all active sessions in your bank account.
- Install two-factor. authentication (for example, through Google Authenticator).
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:
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:
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:
Can App Market steal bank card data?
If the application has permissions to:
โthen theoretically it can be used to steal financial data. If you entered passwords or card codes on an infected device, immediately: