How to safely remove embedded apps on Xiaomi: 5 proven methods

Embedded apps on Xiaomi smartphones are a headache for many users, taking up space in memory, consuming battery life and often not being removed in standard ways, especially for MIUI-branded services like Mi Browser, Mi Music, GetApps or Mi Video, which many consider unnecessary.

But before you get into radical methods, itโ€™s important to understand that not all system applications can be removed without consequences. Some are critical to MIUI, and removing them can lead to system failures, update errors, or even a device bribing. In this article, weโ€™ll look at safe ways to clean a smartphone from unnecessary software, from simple (disable and hide) to advanced (use of ADB and root rights).

We will also answer key questions: what applications can be removed without risk, how to restore the system after unsuccessful manipulations, and what to do if important functions stop working after removal (for example, a camera or a camera). NFC). Instructions will be suitable for most Xiaomi, Redmi and Poco models based on the MIUI 12-14 and HyperOS.

๐Ÿ“Š What Xiaomi apps you want to remove?
Mi Browser
GetApps
Mi Music
Mi Video
Others (write in the comments)
I don't know which ones to remove.

1. Which built-in applications on Xiaomi can be removed and which can not

Before you start removing, you need to be clear about which applications are critical to the system and which are just junk. MIUI has three categories of embedded software:

โœ… Safely removed (does not affect system stability):

  • ๐ŸŒ Mi Browser is a proprietary browser that duplicates Chrome or Firefox.
  • ๐ŸŽต Mi Music is a music player that most users replace with Spotify or YouTube Music.
  • ๐Ÿ“บ Mi Video - video player with limited functions.
  • ๐Ÿ›’ GetApps โ€“ a proprietary app store (similar to Google Play, but with less choice).
  • ๐Ÿ“ฑ Mi Community is a Xiaomi support forum that is rarely used.
  • ๐ŸŽฎ Game Turbo โ€“ utility for gamers (you can delete if you do not play).

โš ๏ธ Removed with caution (may affect individual functions):

  • ๐Ÿ“ธ Mi Camera โ€“ if removed, the main camera will stop working (but you can replace it with Google Camera).
  • ๐Ÿ”Š Mi Sound Recorder is a recorder, but some system features can use it.
  • ๐Ÿ“ก Mi Remote โ€“ remote control (if you do not use the IR port, you can remove it).

๐Ÿšซ Prohibited removal (will cause system failures):

  • โš™๏ธ Settings (com.android.settings) - system settings.
  • ๐Ÿ“ฑ System UI (com.android.systemui - interface MIUI.
  • ๐Ÿ”„ MIUI Daemon (com.miui.daemon) - background processes of the system.
  • ๐Ÿ”’ Security (com.miui.securitycenter.
  • ๐Ÿ“ถ Telephony (com.android.phone) - phone features.

โš ๏ธ Note: Removing applications from the latter category may result in system inability to boot, update errors MIUI or loss of functionality (for example, the notification panel will disappear or the mobile network will stop working).

If you are in doubt whether you can remove a particular application, check its name in the list below or use the disable method (we will talk about it in the next section).

2. Method 1: Disabling embedded applications (without deleting)

The safest method is not to delete, but to disable unnecessary applications, which will free up RAM, stop background activity and hide icons from the menu, but the application files will remain in the system, the advantage of the method is that you can easily return everything back.

How to disable the application on Xiaomi:

  1. Open Settings โ†’ Applications โ†’ Application Management.
  2. Click on the three dots in the top right corner and select Show All Apps.
  3. Find the right app (like Mi Browser) and tap it.
  4. Click Disable (if the button is inactive, the application is critical to the system).
  5. Confirm the action.

After the shutdown:

  • ๐Ÿ“ฑ The icon will disappear from the app menu.
  • ๐Ÿ”„ The application will not start automatically.
  • ๐Ÿ“‰ Stop using battery and traffic.
  • ๐Ÿ”™ If necessary, you can turn it back on in the same settings.

โš ๏ธ Note: Some system applications (e.g., Mi Security) cannot be disabled in the standard way. ADB (described below).

๐Ÿ’ก

If the app reappears after the reboot after the shutdown, try to further clear its cache and data in the settings (Settings โ†’ Applications โ†’ [name] โ†’ Storage โ†’ Clear Data).

3. Method 2: Removal via ADB (no root rights)

If the shutdown is not enough, you can uninstall embedded apps using Android Debug Bridge (ADB).This method does not require root rights, but will require connecting the smartphone to the computer.

What you need:

  • ๐Ÿ’ป Computer with Windows, macOS or Linux.
  • ๐Ÿ“ฑ Cable USB (preferably original).
  • ๐Ÿ”ง Utility. ADB (You can download from the official Android website).
  • ๐Ÿ”“ Included Debugging by USB smartphone.

Step-by-step:

  1. Turn on USB Debugging: Go to Settings โ†’ About Phone. Tap 7 times on MIUI Version to activate Developer Mode. Go back to Settings โ†’ Additional โ†’ Developer. Activate USB Debugging.

File transfer

cmd

Terminal

ADB

adb devices

The name of your device should appear.

Mi Browser

adb shell pm uninstall --user 0 com.android.browser

com.android.browser

List of packages of popular built-in applications Xiaomi:

AnnexPackage name (package name)Can I remove it?
Mi Browsercom.android.browserโœ… Yes.
GetAppscom.xiaomi.mipicksโœ… Yes.
Mi Musiccom.miui.playerโœ… Yes.
Mi Videocom.miui.videoplayerโœ… Yes.
Mi Communitycom.xiaomi.forumโœ… Yes.
Game Turbocom.miui.gameturboโœ… Yes.
Mi Remotecom.duokan.phone.remotecontrollerโš ๏ธ Unless you use an IR port.

After the command is executed, the application will be removed for the current user (flag) --user 0). To get it back, use it:

adb shell cmd package install-existing com.android.browser

Install ADB on your computer | Enabled USB debugging on Xiaomi | Checked connection with adb devices | Downloaded list of packets to delete | Made backup of important data-->

Method 3: Root-rights removal (for power users)

If you have root rights (for example, through Magisk), you can remove embedded applications directly from the system, which gives you more freedom, but also higher risks: careless removal can lead to system failure.

How to remove the system application with root rights:

  1. Install a file manager with root support, such as Root Explorer or Solid Explorer.
  2. Go to /system/app or /system/priv-app (there are stored system applications).
  3. Find a folder with the name of the application you are removing (for example, Browser for Mi Browser).
  4. Delete the folder or rename it (e.g. add at the end of.bak).
  5. Reboot your smartphone.

An alternative way to use Titanium Backup is to use the following:

  • ๐Ÿ“‹ Create a backup of the application before deleting.
  • ๐Ÿ—‘๏ธ Select the unnecessary app and tap Delete.
  • ๐Ÿ”„ Reset the device.

โš ๏ธ Warning: Removing system applications with root rights can lead to loss OTA-Updates before the next update MIUI You may need to restore deleted files.

What if after removal with root rights the smartphone does not turn on?
If the device does not boot after removing the system application, try: 1. Log in Recovery Mode (Press Power) + Volume Up when switched on). 2. Select Wipe Data/Factory Reset (reset to factory settings). 3. If this does not help, flash the device through Fastboot using the Mi Flash Tool. In extreme cases, contact the service center, but note that the warranty may be canceled due to root rights.

5. Method 4: Use of third-party utilities (without root)

If ADB seems complicated, you can use specialized utilities to remove embedded applications.

  • ๐Ÿ› ๏ธ Debloater Tool (for PC) โ€“ allows you to remove applications through ADB graphically.
  • ๐Ÿ“ฑ App Inspector (for Android) โ€“ helps you find application packages for later removal through the app ADB.
  • ๐Ÿ” Package Name Viewer โ€“ Shows the packet names of all installed applications.

Examples of Debloater Tool:

  1. Download and install the utility on the computer.
  2. Connect your smartphone via USB with debugging enabled.
  3. Launch the Debloater Tool and wait for the list of applications to load.
  4. Check the boxes for unnecessary apps (such as Mi Browser or GetApps).
  5. Press Uninstall Selected.

Advantages of the method:

  • ๐Ÿ–ฅ๏ธ Convenient graphical interface (no need to remember commands) ADB).
  • ๐Ÿ” Automatically identify safe applications for removal.
  • ๐Ÿ”™ Ability to restore remote applications.

Disadvantages:

  • ๐Ÿ’ป Computer required.
  • ๐Ÿ”Œ Not all utilities support the latest versions. MIUI.

๐Ÿ’ก

The side of utilities like Debloater Tool makes it easier to work with ADB, but they donโ€™t provide more features than manual commands. Always check which apps you remove, even if the program labels them as โ€œsafe.โ€

6. Method 5: Reset to factory settings with a selection of applications

If you don't want to mess with ADB or root rights, you can use factory resets to disable unnecessary applications, a method that works for new devices or before selling.

How it works:

  1. Go to Settings โ†’ About the phone โ†’ Reset settings.
  2. Select Reset all settings (do not delete all data!).
  3. After the reboot, the system will offer to configure the smartphone as new.
  4. At the stage of selecting applications, uncheck the unneeded boxes (for example, Mi Browser or Mi Music).

Advantages of the method:

  • ๐Ÿ”„ Does not require technical skills.
  • ๐Ÿ“ฑ Stores user data (photos, contacts, etc.).
  • ๐Ÿ”’ Safe for the system.

Disadvantages:

  • โš™๏ธ Not all built-in applications can be disabled at this stage.
  • ๐Ÿ”„ Requires re-configuring the smartphone.

7 What to do if something breaks after removal

Even if you have removed the โ€œsafeโ€ app, there may be some problems:

  • ๐Ÿ“ฑ Donโ€™t turn on your smartphone โ€“ try to go to Recovery Mode and make a reset.
  • ๐Ÿ”„ Persistent system errors โ€“ Restore the remote application through ADB:
  • ๐Ÿ“ฒ Some functions are not working (e.g., the camera or NFC) โ€” Check if you have removed the associated system application.
  • ๐Ÿ”„ They don't come. OTA-It's normal to uninstall system applications, so you have to manually flash the device through Fastboot to update.

If your smartphone stops loading, try the following steps:

  1. Press Power + Volume Up to enter Recovery Mode.
  2. Select Wipe Data โ†’ Wipe All Data (full reset).
  3. If this doesnโ€™t help, run the device through the Mi Flash Tool with the official firmware.

โš ๏ธ Note: If you have removed the root-right system app and the smartphone is not turned on and the reset is not helping, you may need to flash through EDL-It's a complicated procedure that's best left to the experts.

8.Other Removal Alternatives: How to Hide or Replace Embedded Apps

If deleting seems risky, there are alternative ways to get rid of unnecessary software:

๐Ÿ”น Hiding icons

  • Use launchers like Nova Launcher or Apex Launcher, which let you hide your app icons.
  • In the standard MIUI launcher, you can drag an unnecessary application into the Hidden folder (long press โ†’ Hide).

๐Ÿ”น Replacement by analogues

  • ๐ŸŒ Instead of Mi Browser, use Chrome or Firefox.
  • ๐ŸŽต Instead of Mi Music, Spotify or VLC.
  • ๐Ÿ“ธ Instead of a standard camera, Google Camera (if supported by your model).

๐Ÿ”น Limitation of activity

  • In the application settings (Settings โ†’ Applications โ†’ [name]), turn off auto-start, notifications, and background activity.
  • Limit Internet access for unnecessary applications (Settings โ†’ Mobile Network โ†’ Traffic Use).

๐Ÿ”น Using "Light" versions of firmware

Some custom firmware (such as LineageOS or Pixel Experience) lack built-in Xiaomi applications, but installing them requires unlocking the bootloader and may be unwarranted.

๐Ÿ’ก

If you donโ€™t want to remove apps but theyโ€™re in the way, try disabling their updates. Go to Google Play โ†’ Settings โ†’ Auto-Update apps โ†’ Donโ€™t update automatically and manually undo updates for unnecessary programs.

FAQ: Frequent questions about removing embedded apps on Xiaomi

Can I remove Mi Browser without consequences?
Yes, Mi Browser (com.android.browser) can be safely removed via ADB or disabled in settings. It does not affect the stability of the system, since its functions are duplicated by other browsers.
Why GetApps Stopped Coming After Deleting OTA-update?
GetApps (com.xiaomi.mipicks) is sometimes used by the system to check for updates. If OTAs have stopped coming after it is removed, restore the application by command: adb shell cmd package install-existing com.xiaomi.mipicks or manually update via Mi Flash Tool.
How do I know which apps I can remove on my Xiaomi model?
There is no universal list, because the set of built-in apps varies by model and region. To check: Install App Inspector from Google Play. See the list of all apps and their packages. Check our list in the ADB section. If in doubt, turn off the app first, not uninstall it.
Can I remove Mi Security?
No, Mi Security (com.miui.securitycenter) is a critical system application, and deleting it will cause MIUI errors, including problems with unlocking the screen and managing permissions, and the most you can do is turn off some of its features in the settings.
How to return a remote system application?
If removed through ADB flag-headed --user 0, Restore the adb shell cmd package install-existing [package_name] If you delete it with root rights, you have to: Download the original firmware for your model. Unpack it and find the deleted.apk file. Restore it through Root Explorer to a folder. /system/app. In extreme cases, a complete reflashing of the device will help.