How to open all applications on Xiaomi: hidden, system and remote

Xiaomiโ€™s MIUI-based smartphones are known for their abundance of pre-installed apps, some of which are hidden from the user. Even experienced owners of Redmi, POCO or Mi devices donโ€™t always know how to access all installed programs โ€” including system utilities, service menus and those that have been accidentally removed from the main screen. In this article, we will examine all the ways, from standard to hidden, that will help open all applications on Xiaomi, regardless of the firmware version.

Not only are some apps hidden, but users often find that after a MIUI update or reset, some programs disappear from the menu, and this is due to Xiaomiโ€™s policy of automatically hiding underutilized utilities or duplicate features (such as two file managers), we will show you how to return them back without resorting to root rights or complex manipulation.

It is important to understand that some system applications (e.g. com.miui.securitycenter) are critical to the operation of the device, and forced removal or disabling of them can lead to failures. All methods in this article are safe, but require care - especially when working with ADB or engineering menus.

1. Standard method: All Apps menu in MIUI

The easiest method is to use the built-in All Apps menu, which is available on all versions of MIUI (12 to 15) to open it:

  1. Swipe your finger up from the bottom edge of the screen (on devices without a Home button) or click on the All Apps icon** (six dots) in the dock panel.
  2. In the upper right corner, press three dots (โ‹ฎ) and select Hidden Applications.
  3. This will show all the programs that have been hidden manually or by the system, and to return them to the main menu, click on any one and uncheck the Hide box.

If this method didn't work, it's possible that the application was disabled (rather than hidden).

  • ๐Ÿ“ฑ Go to Settings. โ†’ Annexes โ†’ Application management.
  • ๐Ÿ” In the search bar, enter the name of the desired application (for example, the Camera or the camera). FM-radio).
  • ๐Ÿ”„ If the program is disabled, click "Enableยป.
๐Ÿ“Š What version? MIUI You're using it?
MIUI 12
MIUI 13
MIUI 14
MIUI 15
I don't know.

Method limitation: this menu only displays custom and some system applications. Service utilities (e.g. com.miui.weather2) wonโ€™t appear here โ€“ they need other ways.

2. Search the system: how to find any application in 10 seconds

MIUI has a built-in global search that searches not only in the app menu, but also in settings, contacts and even system files.

  1. Swipe your finger down the main screen (search call gesture).
  2. Enter the name of the application in English or Russian (for example, calculator for calculator or radio for the computer). FM-receiver).
  3. If the application is found, click on the result โ€“ it will open immediately, even if it was hidden.

This method works for 90% of Xiaomi apps pre-installed, including those that donโ€™t appear on the menu.

  • ๐Ÿ“ก FM Radio (if supported by hardware).
  • ๐Ÿ”ง Engineer Mode (Engineering Menu for Tests).
  • ๐Ÿ“Š Security (security center with advanced settings).

๐Ÿ’ก

If the search doesnโ€™t find an app, try typing in its batch name (e.g. com.android.calculator2 for calculator).A list of batch names for Xiaomi can be found at the end of the article.

If global search is disabled (for example, after resetting), turn it on to Settings โ†’ Additional settings โ†’ Search.

3. Hidden applications via MIUI settings

Some Xiaomi apps are not just hidden, they're disabled by default to save resources.

  1. Open Settings โ†’ Applications โ†’ Application Management.
  2. Press three points (โ‹ฎ) in the upper right corner and select Show all applications.
  3. In the list, find the app you want (like Google Play Music or Mi Video) and click on it.
  4. If the Enable button is active, press it. If the button is not open but the app does not open, click Reset.

You can also see system applications that are not normally displayed in the main list, such as:

  • ๐Ÿ”’ Mi Account (management of Xiaomi account).
  • ๐Ÿ“ฆ Package Installer (Installator) APK).
  • ๐Ÿ“ถ Sim Toolkit (menu) SIM-map).
How to distinguish a system application from a user application?
System applications in MIUI icon-marked ๐Ÿ› ๏ธ (They are not removed without root rights, but can be disabled (not recommended for critical services such as com.android.phone).

Warning: Do not disable apps called com.miui. or com.android. unless you are sure of their purpose.This may cause the camera, network, or other features to fail.

4.Use ADB to access all applications

If standard methods don't work, you can use ADB (Android Debug Bridge), an Android debugging tool that allows you to include even those applications that are hidden at the system level.

Install Xiaomi drivers on PC| Enable debugging over USB in the developer settings | Download ADB Tools (platform-tools) | Connect your phone to your PC over USB

-->

Instructions for inclusion of hidden applications:

  1. Connect your phone to your computer and open the command prompt (Windows) or terminal (Mac/Linux) in the folder with the platform-tools.
  2. Enter the command to check the connection: adb devices Wait for the serial number of the device to appear.
  3. To see all installed applications (including hidden ones), follow: adb shell pm list packages -f
  4. Find the right application in the list (for example, package:/data/app/com.miui.fm-1/base.apk=com.miui.fm for FM-radio) and turn it on by command: adb shell pm enable com.miui.fm

After that, the app will appear on the menu. If it doesn't open, try resetting its cache:

adb shell pm clear com.miui.fm

ADB Team TeamDescriptionExample
pm list packagesShow all the packagesadb shell pm list packages | grep miui
pm enableInsert the annexadb shell pm enable com.miui.calculator
pm disable-userDisable the applicationadb shell pm disable-user com.miui.analytics
pm clearClear the dataadb shell pm clear com.android.vending

๐Ÿ’ก

ADB is the most powerful tool for managing applications, but it requires caution: Donโ€™t turn off system services (like com.android.phone) or the phone may stop ringing or connecting to the network.

If the app doesn't appear after you execute the commands, try restarting the device. In rare cases, you also need to reset the cache through Settings โ†’ Memory โ†’ Cleanup.

5. Engineering menu and service codes

Xiaomi devices have hidden service menus that allow you to run system utilities without searching the interface, such as opening:

  • ๐Ÿ“ก Network test (code ##4636##).
  • ๐Ÿ”‹ Battery information (code #44336##).
  • ๐Ÿ“ฑ Engineering menu (code ##3644633## for Redmi or ##6484## for Redmi) POCO).

To use the code:

  1. Open the Phone app** and go to the Keyboard tab.

๐Ÿ’ก

On some models (like the Redmi Note 10 Pro), the engineering menu is hidden deeper. To open it, type ##64663## in your phone, then select MTK Settings โ†’ Hardware Testing.

Note: Do not change the settings in the engineering menu unless you know what they are, for example, incorrect settings in the RF Band Selection section can lead to network loss.

6 Recovery of Remote Applications

If the application has been removed (rather than hidden), it can be restored in several ways:

  1. Through MIUI Optimization (for system applications): Adb shell cmd package install-existing com.miui.calculator This command will restore the standard calculator even if it was deleted.
  2. Through the app store: ๐Ÿ“ฑ For Google Play: Find the app by name (e.g. Mi Remote) and install it again. ๐Ÿ›’ For GetApps (Xiaomi store): some system utilities can be downloaded there (e.g. Mi Community).

Through firmware (advanced method):

If the application has been removed along with the firmware (for example, after a custom recavator), it can be removed from the official ROM and installed manually through ADB Sideload.

The list of apps that most often โ€œdisappearโ€ after updates:

  • ๐ŸŽต Mi Music (replaced with Google Play Music).
  • ๐Ÿ“บ Mi Video (Hidden in favor of Google) TV).
  • ๐Ÿ“ป FM Radio (disables on models without antenna).

๐Ÿ’ก

If the application was removed along with the MIUI update, its recovery may require a rollback to the previous firmware version, in which case it is better to wait for the next update where the problem can be fixed.

Attention: do not install APK-System application files from unknown sources, which may contain viruses or may not be compatible with your version MIUI.

If you use ADB or want to find an app through search, here is a list of batch names for the most common utilities:

AnnexPackage nameDescription
Camera.com.android.cameraStandard camera app
FM-radiocom.miui.fmIt only works on models with FM-chip
Security centrecom.miui.securitycenterAntivirus, memory cleaning, permissions
Topicscom.android.themesTheme and wallpaper shop
Mi Remotecom.duokan.phone.remotecontrollerRemote remote for technology

A complete list of batch names for your model can be obtained by the team:

adb shell pm list packages | grep miui

If you are looking for a specific application but donโ€™t know its batch name, use the command:

adb shell pm list packages | grep -i "name"

(Replace the name with a part of the name, such as a radio or browser).

FAQ: Frequent questions

๐Ÿ” Why some apps disappear after the update MIUI?
Xiaomi regularly optimizes firmware by removing or hiding underutilized utilities, such as MIUI 14 removed the standard browser, and MIUI 15 removed some Google services, and use the methods in this article (especially ADB or GetApps recovery) to bring them back.
โš™๏ธ Can you completely remove Xiaomi system applications?
Technically, yes, but it requires root rights or custom recaps (e.g. TWRP). However, it is risky: removing critical services (e.g. com.miui.home) will lead to a bootloop (a looped reboot). It is better to disable unnecessary applications through ADB: adb shell pm disable-user --user 0 com.miui.analytics This command will disable analytics collection without deleting the application file.
๐Ÿ“ฑ How to Return a Standard Launcher MIUI, if he's gone?
If a standard MIUI is missing after installing a third-party launcher (like Nova Launcher), follow: Open Settings โ†’ Applications โ†’ Default. Select Home** and install Launche (standard launcher). If it is not listed, turn on ADB: adb shell pm enable com.miui.home
๐Ÿ”’ What to do if the application is blocked by the administrator of the device?
Some applications (such as Mi Pay or enterprise utilities) may be blocked by security policies. To unlock: Go to Settings โ†’ Passwords and Security โ†’ Device Administrators. Uncheck the application that blocks access. If unlocking is not possible, try resetting security settings through Settings โ†’ Additional โ†’ Resetting โ†’ Reset application settings.
๐Ÿ› ๏ธ Can I open applications from another firmware?
Yes, but with reservations, for example, if you want to install Mi Music from MIUI 13 on MIUI 15, You need to: Download APK-Application file from a trusted source (e.g. APKMirror) Manually install it by disabling source verification in Settings โ†’ Annexes โ†’ Special access โ†’ Install unknown applications if an error occurs INSTALL_FAILED_INCOMPATIBLE, This means that the app is incompatible with your version of Android or MIUI. Attention: installation APK Old firmware can cause conflicts or security vulnerabilities.