How to remove GetApps on Xiaomi Redmi 4X: the full guide

Owners of Xiaomi smartphones, especially early models like the Redmi 4X, often face intrusive notifications from the built-in app store GetApps. This service, which is the equivalent of Google Play for the Chinese market, is installed by default in the shell of MIUI and can annoy users with advertising and unnecessary processes in the background. Deleting this component requires caution, since it has the status of a system application, but there are proven methods to deactivate it.

The process of getting rid of GetApps (often displayed as the App Store or Mi Market) on Redmi 4X does not require root rights, which preserves the guarantee and stability of the device. We will consider several ways: from simple disabling through settings to complete removal through the computer using debugging over USB. The choice of method depends on your goal: simply stop receiving notifications or completely free up space in the system partition.

Before you start taking action, it is important to understand that GetApps is not just a shortcut on the desktop, but part of the system framework of MIUI. On the Redmi 4X model, which is based on the Snapdragon 435 processor, every megabyte of RAM and CPU cycle on the account. Removing unnecessary services can positively affect the autonomy and speed of the interface, especially on older versions of Android.

However, it is worth considering that the complete removal of system components always carries minimal risks. If you plan to use only global firmware and Google services, the absence of a Chinese market will not affect the operation of the phone.

In this article, we will go into detail about device preparation, enabling hidden developer menus, and step-by-step algorithm for actions through ADB. We will also touch on the topic of security and explain why standard removal via Settings is often not available for this particular package.

Redmi 4X Preparation for System Modification

The first step before any interference with Xiaomi system files is to properly prepare the device. You need to activate the developer mode, which is hidden by default. To do this, go to the Settings menu โ†’ About the phone and find the MIUI version line. You need to quickly click on this line 7-10 times in a row until a pop-up message that you have become a developer appears.

Once you activate the hidden menu, you need to configure the debugging options. Go to Settings โ†’ Advanced Settings โ†’ For developers. Here you should find the Debugging USB and switch the slider to the active position. The system will alert you to the potential risks - confirm the action. Without this step, the computer will not be able to access the file system of the smartphone to delete GetApps.

โš ๏ธ Warning: When you connect your phone to a computer with debugging enabled, you will see a request for permission to access the device screen. Be sure to tick "Always Allow from this computer" and click "OK" or the connection will break after each command.

It is also recommended to back up important data, although the methods described are considered safe. 4X This can be done through the built-in Mi Cloud or by copying files to the cloud. SD-Make sure the battery is at least 50% so that the device does not turn off at a critical point in the execution of scripts.

  • ๐Ÿ“ฑ Activate Developer Mode with seven-time press on version MIUI.
  • ๐Ÿ”Œ Put the debugging on. USB developer menu.
  • ๐Ÿ’พ Make a backup of contacts and photos in case of a failure.
  • ๐Ÿ”‹ Check the battery level (minimum 50%).

โ˜‘๏ธ Redmi Preparation 4X Remove GetApps from the

Done: 0 / 1

Required tools and drivers

To effectively remove the GetApps system application, you will need a personal computer or laptop running Windows, macOS or Linux. Mobile methods through third-party launchers on the Redmi 4X itself often do not give full access to uninstall system packages, so using a PC is the most reliable option.

The key component is the Android Debug Bridge (ADB) toolkit, which is Googleโ€™s official tool for controlling your device from a computer, so you donโ€™t have to download heavy development environments like Android Studio, you just need a minimal set of Platform Tools, and itโ€™s critical to install the right drivers for your smartphone so that your computer recognizes it as a debugging device, not as a drive.

Xiaomi owners often require specific ADB-Drivers that may not be in the standard Windows database.If you connect your phone to it as an "Unknown Device," you'll have to manually specify the path to the drivers through your Device Manager. 4X With its common Qualcomm chipset, driver problems are rare, but it is necessary to have them on hand.

Where to download Safe ADB?
Download Platform Tools only from the official Android Developers website or verified repositories. Avoid questionable sites offering "ADB Installer" that may contain adware. The official package weighs little and requires no installation, working from a folder.

Once you download the tool archive, unpack it to the root of the disk, such as the C:\adb folder. This will make it easier to enter commands later. Open the command prompt (cmd) or PowerShell, go to this directory and type in the adb device command. If done correctly, you will see a list of connected devices with a unique identifier.

Search for the name of the GetApps package

Before you execute a deletion command, you need to accurately identify the name of the package responsible for the operation of the GetApps store. In the Xiaomi ecosystem, package names can vary depending on the firmware version (Global, China, Developer), but for Redmi 4X they are usually standardized.

The easiest way to know the exact name is to use a packet listing command. Connect your phone to your PC, open the command prompt in the ADB folder, and type in: adb shell pm list packages. This command will output a huge list of all installed applications. So you can filter the results by adding a keyword to not search manually.

Type in the command adb shell pm list packages | grep miui (for Linux/Mac) or adb shell pm list packages and look closely at the list in Windows. You need to find the line containing com.miui.market. This is the package responsible for the Chinese app store. In some cases it may masquerade as the App Store, but the internal name will remain the same.

โš ๏ธ Warning: Don't confuse com.miui.market with com.android.vending (that's Google Play) or com.xiaomi.mipicks (that's the new GetApps in global firmware). Deleting Google Play system components could disrupt all Google services on the device. For convenience, we have prepared a table with the main system packages, which are often confused by Redmi users. 4X. Make sure you remove exactly what you need. Packet name Description Deletion security Influence on com.miui.market Chinese store GetApps/Mi Market Safe No App Store Mi com.xiaomi.mipicks Global version GetApps Safe Disables System App Updates com.android.vending Google Play Store Google Services com.miui.securitycenter Google Services Dangerously Stop Working Work permits and antivirus ๐Ÿ“Š What's your firmware version? MIUI on the Redmi 4X?Global Stable China Stable Developer LineageOS, etc. Delete GetApps via ADB (Command Prompt: This is the primary and most effective method to completely remove GetApps from Redmi 4X. It doesnโ€™t require root rights, but it works on debugging privileges. Make sure the phone is connected, debugging is enabled, and you are in the command line in the folder with ADB. Enter the following command to remove the market packet: adb shell pm uninstall -k --user 0 com.miui.market Let's break down the syntax of this command so you understand what's going on. pm uninstall gives the package manager to delete the application. Flag -k saves data and cache (in case you want to return the application by flashing it back), and --user 0 indicates that the deletion is done for the main user of the device, which makes the application invisible to the system, effectively removing it, but leaving the possibility of recovery by reset. If the command is successful, the terminal will appear a message Success. 4X It can freeze or blink for a second, which is a normal reaction of the system to changing the composition of installed packets. After that, the icon will disappear from the menu, and the processes associated with it will cease to be loaded into memory. ๐Ÿ’กIf the team returns a mistake, Failure [not installed for 0]ยป, This means that the package with that name has already been removed or renamed in your firmware version. Try to find the current name through the list packages command. In some cases, especially on updated global firmware, the Chinese market can be replaced with its global counterpart. If the previous command didnโ€™t find the target, try to delete the new packet: adb shell pm uninstall. -k --user 0 com.xiaomi.mipicks This command is relevant for the latest versions MIUI, The principle of operation is the same: the system marks the package as remote for the current user.Rebooting the device after the procedure is not necessary, but desirable for cleaning the system cache and completing background processes. Alternative methods and graphical interfaces Not all users feel comfortable with the command line. Fortunately, there are graphical shells for the command line. ADB, It's a tool that automates the process of removing system applications on Xiaomi. One of the most popular and secure tools is the Xiaomi program. ADB/Fastboot Tools or Universal Android Debloater utility. These programs automatically detect the connected Redmi. 4X, They scan a list of packages installed, and they suggest you remove junk apps with a single button, and you just have to run the program on your PC, plug in your phone, and find GetApps or Mi Market on the list, and the interface of these utilities is usually more friendly and contains descriptions of each package. However, graphics techniques have limitations: they can not work properly on very old versions of Android or, conversely, on beta versions. MIUI. In addition, some cleaners may be overly aggressive and suggest removing important system components needed to work. MIUI. Always read the description of the package carefully before deleting it. ๐Ÿ–ฅ๏ธ Use proven utilities like Universal Android Debloater. โš ๏ธ Do not remove packages that you are not sure about. ๐Ÿ”„ Graphics tools may require database updates. ๐Ÿ“‰ It's a good way to remove ads and software on a mass scale, and another option is to use root-access file managers like Root Explorer or System App Remover, but that way requires unlocking the bootloader and getting the superuser rights that Redmi has. 4X This can be a complicated process due to the need to wait 7 days and have a Mi Account with a device-linked connection. โš ๏ธ Attention: Using third-party cleaners from Play Market to remove system applications is often inefficient.They work in the Android sandbox and do not have the right to modify the system partition without root. ADB Possible problems and their solution In the process of removing GetApps on Redmi 4X You may encounter a number of technical difficulties. The most common problem is that the computer can't see the phone. If the device displays in Device Manager with a yellow exclamation point or as "Unknown Device," try replacing it with a new one. USB-Cheap cables often only support charging and don't transmit data. ADB It doesn't perform or it gives you an authorization error. Make sure you've actually confirmed the debugging on your smartphone screen. Also check that the developer menu includes the option โ€œDebugging byโ€ USB (Security settings, if available in your version MIUI. Sometimes it helps to reconnect the cable after debugging, and if the store still appears after deleting it or processes hang in your memory, you may have a modified firmware or a virus miner masquerading as a system process. In this case, it is recommended to check the device with an antivirus or reset to factory settings, having previously saved the data. ๐Ÿ’กRemove GetApps via ADB It's a safe procedure, reversible only by completely resetting your phone. OTA-system updates, but the store itself will stop updating. After removing GetApps, some Xiaomi system applications (themes, wallpaper, browser) may stop receiving updates because they are tied to this store. However, for the basic functionality of the phone, this is not critical, and you can update these applications by downloading them. APK-Files from verified resources. Frequently asked questions (FAQ) Can I delete GetApps without a computer? MIUI You can't delete the GetApps system application, the Delete button will be inactive. Without a computer (using only a phone), this is only possible with Root rights and a dedicated file manager, but this is more difficult and risky for the average user. Will GetApps come back after the firmware update? Yes, if you do a full Wipe Data reset or refashion your device through the firmware update. Recovery/Fastboot, System applications, including GetApps, will return. method ADB (--user 0) hides the application only for the current session of using the system without flashing it. 4X? Absolutely secure. This application is not critical to the Android operating system or shell. MIUI. Deleting it won't cause a cyclic bootloop or loss of personal data, but it will free up the resources of the device. What if the phone stopped seeing the computer? Try another one. USB-port USB 2.0 behind the system unit), replace the cable, restart the smartphone. Also in Windows Device Manager, try updating the driver by manually selecting it from the list (Android) ADB Interface? Should I turn on the debugging again? USB After the reboot? Usually the settings are saved. However, if you havenโ€™t used debugging or upgraded your system for a long time, Xiaomi may ask for permission to connect again for security reasons when you next try to connect to your PC.