How to completely disable or remove the game on Xiaomi Redmi: all working methods

Games on Xiaomi Redmi smartphones are often a source of irritation: they take up memory, consume battery power in the background and constantly send notifications. Even after standard removal, some games (especially pre-installed system) continue to recover after rebooting. In this article, we will analyze 5 proven ways – from simple disconnection to complete removal through ADB, including the nuances of working with the Game Turbo and Game Center in MIUI 12-14.

It's important to understand that not all methods are equally effective. For example, hiding an icon does not stop the background processes of the game, and forced stop through settings is reset after restarting the phone. We tested each method on the Redmi Note 10/11/12 Pro, Redmi 9/10 and POCO X3/X4 models, the results are summarized in a comparative table below.

1. Standard removal through settings

The most obvious, but not always working, method is suitable for custom games (installed from Google Play or APK), but useless for system applications like Game Center or Mi Game Turbo.

How to delete:

  • πŸ“± Open the Settings. β†’ Annexes β†’ Application management.
  • πŸ” Enter the name of the game in the search bar (for example, PUBG Mobile or Call of Duty).
  • πŸ—‘οΈ Click Delete (if the button is active) If it is not activated, then the game is system (see method 3).
  • πŸ”„ Confirm the action and restart the phone.

⚠️ Note: After removal, some games (such as Genshin Impact) are left to play. 1-2 GB cache in a folder /Android/obb/. To clear them, use the file manager or Settings. β†’ Memory. β†’ Cleanup.

If the Remove button is inactive and the game is pre-installed (e.g. Mi Game Center), move to the next method. Also check if the game is hidden in Settings β†’ Screen β†’ Hidden applications – sometimes it is just hidden, but continues to work.

πŸ“Š What game are you trying to remove with Xiaomi Redmi?
PUBG Mobile
Call of Duty: Mobile
Genshin Impact
Free Fire
Another system game
User-generated game

2. disable the game without deletion

If you can't delete a game (like Game Turbo or Mi Video), you can turn it off, which will stop background processes and notifications, but won't free up memory.

Instructions:

  1. Go to Settings β†’ Applications β†’ Application Management.
  2. Select the game from the list or search through search.
  3. Click Disable (if the button is grey – ADB rights are required, see Method 5).
  4. Confirm the action in the dialog window.

After the shutdown:

  • βœ… The game icon will disappear from the desktop.
  • βœ… Notifications and background activity will cease.
  • ❌ Memory will not be released (game files will remain in the system).
  • ❌ After updating MIUI playback may be activated again.

β˜‘οΈ Preparing for the game shutdown

Done: 0 / 4

⚠️ Note: Disabling system games like Game Center can cause errors in the Game Turbo (gamer mode). If you use this mode, use method 4 (hiding through the gamer mode). MIUI Hidden Settings).

3. Remove system games via MIUI Hidden Settings

To remove pre-installed games (such as Mi Game Center or Mi Pay), you will need a hidden MIUI menu.This method works without ADB, but requires activation of the developer mode.

Steps:

  1. Activate Developer Mode: Settings β†’ About Phone β†’ MIUI Version (click 7 times)
  2. Return to Settings β†’ Additional β†’ For developers and enable USB debugging.
  3. Install QuickShortcutMaker from Google Play.
  4. In QuickShortcutMaker, search for com.android.settings and select Hidden Settings (or com.android.settings/.HiddenSettingsActivity).
  5. In the menu that opens, go to Manage applications and find the game.
  6. Click Uninstall for all users (if available).

If the uninstall option is not available, the game is firmware-protected, in which case only the ADB method will help.

What if Hidden Settings doesn’t open?
If nothing happens in QuickShortcutMaker after clicking on Hidden Settings, try: 1. Reboot the phone. 2. Clear QuickShortcutMaker cache (Settings β†’ Applications β†’ QuickShortcutMaker β†’ Clear the cache). 3. Use the Activity Launcher alternative app (available on Google Play). 4. Update MIUI to the latest version (in older versions, the hidden menu may not work).

4. Hiding the game without deletion (for Game Turbo)

If you want the game to run the Game Turbo (like Mi Game Center) but you don't want to see its icon and notifications, you can hide it without completely removing it. This method doesn't stop the background processes, but removes the annoyance from the constant reminders.

How to hide it:

  • πŸ“‚ Open the Settings. β†’ Screen. β†’ Hidden applications.
  • πŸ” Find the game in the list and activate the switch.
  • πŸ”„ Restart your phone (the icon will disappear from your desktop).

To completely hide the notifications:

  1. Go to Settings β†’ Notifications β†’ Notifications Management.
  2. Find the game in the list and turn off all switches.
  3. In the Notification Categories section, turn off Sound, Vibration, and Pop-ups.
MethodSuitable forDeletes files.Stops background processesRequires root/ADBRestored after update
Standard removalCustomized gamesβœ… Yes.βœ… Yes.❌ No.❌ No.
ShutdownSystem games❌ No.βœ… Yes.❌ No.βœ… Yes.
MIUI Hidden SettingsSystem games (not all)βœ… Yes.βœ… Yes.❌ No.❌ No.
HidingAny games.❌ No.❌ No.❌ No.❌ No.
ADBAny games.βœ… Yes.βœ… Yes.βœ… Yes.❌ No.

πŸ’‘

Hiding a game does not free up memory or stop its background activity, but only use this method if other options are not available or you do not want to risk the stability of the system.

5. Complete removal via ADB (for experienced)

This method allows you to permanently delete any game, including system, but requires a computer connection and basic knowledge of ADB. Incorrect use of commands can lead to a failure of MIUI - make a backup copy of the data before starting.

Step-by-step:

  1. Download and install Platform Tools (includes ADB).
  2. Turn on USB debugging on your phone (Settings β†’ Developer).
  3. Connect Redmi to your computer and confirm your trust in the device.
  4. Open the command line (Win + R β†’ cmd) and type: Adb devices Make sure the device is defined.
  5. Get a list of packages: adb shell pm list packages | grep 'game' (replace the game with a part of the game name, such as pubg or com.tencent).
  6. Delete the game by the team: adb shell pm uninstall -k --user 0 name.pack Example for Mi Game Center: adb shell pm uninstall -k --user 0 com.xiaomi.gamecenter

If the team returns the error DELETE_FAILED_INTERNAL_ERROR, The game is secure:

  • πŸ”§ Use it. --user 0 Instead of deleting completely (removed only for the current user).
  • πŸ”§ Shut down. MIUI Optimization (requires root): adb shell settings put global miui_optimization_disabled 1 Then repeat the removal command.

⚠️ Note: Removing system packages (e.g. com.xiaomi.gamecenter.sdk) may disrupt Game Turbo. If you use this mode for other games, it is better to disable unnecessary game rather than delete it completely.

adb shell dumpsys package name.packet

This will show which services are using the game, such as the Mi Game Center, which may be linked to the Game Turbo or the Mi Account.-->

6 Recovery of Remote Game

If you find that you needed the game after deleting it (for example, for the Game Turbo), you can restore it.

If the game was off:

  • πŸ”„ Go to Settings. β†’ Annexes β†’ Application management β†’ Disconnected.
  • πŸ”§ Find the game and click Enable.

If the game was removed via Hidden Settings or ADB:

  • πŸ“₯ Reset your phone to factory settings (Settings) β†’ The phone. β†’ Resetting settings).
  • πŸ”§ Or set the game manually from APK (For example, download from APKPure).
  • πŸ”„ System games (such as Game Center) may require firmware replay MIUI.

If the game does not recover after the reset, check the version of MIUI. In some firmware (for example, MIUI 13 for Redmi Note 11), system games are not automatically restored - they must be installed separately.

FAQ: Frequent questions

Can I remove the Game Turbo without any consequences?
Game Turbo is a system component that optimizes games, and removing it will result in: No performance mode in games, possible lags in heavy games (like Genshin Impact), errors in the launch of some games (if they use the Game Turbo API), it is better to disable it through ADB than delete: adb shell pm disable-user --user 0 com.miui.gameturbo
Why does the game reappear after the MIUI update?
System games (Game Center, Mi Pay, etc.) recover from the upgrade because they are sewn into the firmware. To avoid this: Before upgrading, turn off the game via ADB (not delete). Use Magisk and the Universal DeBloater module to block recovery. Install custom firmware (such as Pixel Experience) where there are no preinstalled Xiaomi games.
How to delete the game if the Remove button is inactive?
If the game is system-based, standard removal is blocked. Options: Disable (see method 2). Delete via ADB (see method 5). Use MIUI Hidden Settings (see method 3). Install Magisk and the App Systemizer module to convert the system game to a user-generated game and remove it. For Redmi models on MIUI 14, the guest mode also works: Create a guest profile (Settings β†’ System β†’ Multiplayer Mode). In guest mode, the game will be disabled, but will remain in the main profile.
Is it safe to remove games through ADB?
Remove User Games (installed by you) through ADB The risks arise when you delete system packets: ❌ com.xiaomi.gamecenter could break Game Turbo. ❌ com.miui.gameturbo will lead to errors in games. ❌ com.xiaomi.market – remove Mi App Store (may disrupt updates) Before removing check packages on sites like APKMirror or in thematic forums (for example, check packages on sites like APKMirror, 4PDA).
How to clean the game cache after removal?
Even after the game is deleted, the files can remain in the game: /Android/obb/[Packet name: Large files (up to) 2-4 GB). /Android/data/[packet name] - save and cache. /storage/emulated/0/[Game folders: User data. To clear: Use a file manager (e.g. Mi File Manager or Solid Explorer). Enable the display of hidden files (Manager settings) β†’ Show hidden files. Delete folders manually or through Settings β†’ Memory. β†’ Cleaning. For automatic cleaning, install SD Maid (available on Google Play).