Xiaomiโs Android TVs or Google TVs allow you to install dozens of apps, from streaming services to games. However, over time, background processes slow down the system, cause hangovers or even overheating. Unlike smartphones, where closing apps is intuitive, on set-top boxes and smart TVs, this process has its own nuances.
In this article, weโll break down 5 proven ways to close apps on Xiaomi Mi TV 4/4S/4A/5/5X, Redmi Smart TV and other models, including hidden features for power users. Youโll learn how to free up RAM without rebooting, which apps can be closed safely and which ones are better left in the background. Weโll also uncover the myth of โkilling all processesโ โ why itโs not always good for performance.
Why donโt apps close automatically?
Android TV is optimized for large screens, but its memory management mechanism is different from the mobile version, and here are the key reasons why apps remain active:
- ๐ Data caching: The system stores the state of applications in memory for quick switching (e.g. between YouTube and Netflix).
- ๐ถ Background Services: Some applications (e.g. Google Play Services or Mi Home) run in the background to synchronize data.
- ๐ฎ Game Mode: On models that support ALLM (Auto Low Latency Mode), games can block closing to reduce latency.
- โ๏ธ Optimization errors: On TVs with 1-2 GB of RAM (e.g., Mi TV 4A 32), the system does not always correctly free up memory.
Controlling background processes is important, but shutting down all applications completely can have the opposite effect: the system will waste resources on re-starting them, and the optimal approach is to close only those programs that clearly slow down TV or take up critically much memory.
Method 1: Closing through the "Last Appendices" menu
The simplest method is similar to smartphones, and works on all Xiaomi models with Android TV 9.0 and later (including Google TV on the latest versions):
- On the remote, press the Home button (house icon).
- At the top of the screen will appear the panel "Last" (or "Recent Apps").
- Use the โ/โ buttons on the remote to select an unnecessary application.
- Press โ on the remote to open the context menu and select Close (or Close).
On some firmware (e.g., on Mi TV 5 Pro), instead of the โ button, you need to press the OK button on the selected application for 2 seconds.
Go to the main screen (home button)
Check the list of recent applications
Close the unnecessary (do not touch the system!)
Restart the TV if it slows down after closing-->
โ ๏ธ Warning: Do not close the Google Play Services, Android System or Mi TV Launcher apps, which may cause a remote or interface to crash.
Method 2: Forced stop through settings
If the app is frozen and does not respond to a standard shutdown, use forced shutdown, which is also useful for applications that automatically start when you turn on the TV (for example, advertising services).
Instructions:
- Go to Settings โ Applications.
- Select the "Installed Apps" section (or "See all apps" on Google TV).
- Find the desired application in the list and open its page.
- Press "Force Stop" (Force Stop).
- Confirm the action in the dialog window.
On some models (e.g. Redmi Smart TV X50), the path may be different: Settings โ Device โ Applications.
| Model TV | The Way to App Settings | Notes |
|---|---|---|
| Mi TV 4/4A/4S (2018โ2020) | Settings โ Applications | Menu in Chinese/English |
| Mi TV 5/5X/5 Pro (2020โ2022) | Settings โ Device โ Applications | Supports Google TV |
| Redmi Smart TV X50/X55 | Settings โ All settings โ Applications | Requires a remote with a microphone |
| Mi TV Q1/Q2 (2021โ2023) | Settings โ System โ Applications | Interface on Android 11+ |
โ ๏ธ Warning: Forced shutdown of system applications (e.g., com.xiaomi.mitv.settings) can result in loss of remote access or resetting of audio settings. Before experimenting, check the name of the package in Settings โ About TV โ Software version.
๐ก
If the app doesnโt appear in the Installed list, try turning on the system applications display: in the top right corner of the screen with the list, click on three dots (โฎ) and select Show System.
Method 3: Use ADB-Teams (for experienced teams)
If standard methods do not help (for example, the application does not close or automatically restart), you can use the ADB debugging bridge. This method requires connecting the TV to the computer, but gives full control over the processes.
What you need:
- ๐ฅ๏ธ Computer with Windows/macOS/Linux.
- ๐ Cable USB-A โ USB-A (or USB-C โ USB-A for new models).
- ๐ ๏ธ Utility. ADB (download from the official website).
Step-by-step:
- Turn on Developer Mode on TV: Settings โ About TV โ Software Version โ Click 7 times on the build number
- Activate Debugging by USB in the developer menu.
- Connect the TV to your computer with a cable and confirm the trusted device on the screen.
- Open the command line (terminal) and execute: adb devices (you should display your device).
- Get a list of running applications: adb shell ps -A | grep -i "com\".
- Close the application you want (e.g. YouTube): adb shell am force-stop com.google.android.youtube.tv
To completely close all third-party applications (except system ones) use:
adb shell am kill-allList of popular application packages for Xiaomi TV
โ ๏ธ Warning: Kill-all or am force-stop com.android.systemui commands can lock the interface before rebooting. Use them only if you are sure of the consequences.
Method 4: Reboot the TV (soft and hard reset)
If the TV is slowing down or the apps are not responding to the shutdown, a reboot will help. On Xiaomi TV there are two options:
Soft Reboot (Soft Reboot)
It's a standard shutdown/on, saves the app cache, but clears the RAM.
- ๐ Press the Power button (or Power) for 3-5 seconds on the remote.
- ๐บ Select "Restart" from the menu.
Hard Reboot (Hard Reboot)
Forced interrupts all processes, including system processes, and use it if the TV is stuck on the logo or not responding to the remote.
- โก Turn off the TV for 10-15 seconds.
- ๐ Connect back and turn on with a button on the case (not the remote!).
On Google TV models (such as the Mi TV Q2 2023), a hard reset can result in a file system check the next time it is turned on โ this is normal and takes up to 5 minutes.
๐ก
Hard reset should only be used in extreme cases, and frequent power outages can damage memory chips on budget models (e.g. Redmi Smart TV A55).
Method 5: Automatic closing through Tasker (for advanced)
If you want to automate closing apps on a schedule or under certain conditions (like when you start a game), you can use the Tasker app. It's available on Google Play for Android TV, but requires customization.
Example of the task of closing YouTube every hour:
- Install Tasker via Google Play or with adb install.
- Create a new task ("Task") with the action "Kill App".
- In the Package field, enter com.google.android.youtube.tv.
- Create a profile with a Time trigger (e.g., every 60 minutes).
- Link the task to the profile.
For models without Google Play (such as the Mi TV 4A on PatchWall), the Tasker can be manually installed via ADB:
adb install tasker.apkAlternative applications for automation:
- ๐ค Automate is a visual task designer.
- โฐ MacroDroid is a simplified version of Tasker.
- ๐ Greenify โ to freeze background processes (requires root).
โ ๏ธ Warning: On Xiaomi TVs with PatchWall (Chinese firmware), Tasker may not have the rights to close system applications. Before buying plugins, check compatibility on forums (for example, 4PDA).
What applications can be closed safely?
Not all background processes are equally useful, but here is a list of applications that can be closed without risk to the system:
| Type of application | Examples | Can I close it? | Notes |
|---|---|---|---|
| Streaming services | YouTube, Netflix, Prime Video | โ Yes. | Close after viewing. |
| Games | Asphalt 9, Minecraft, Emulators | โ Yes. | Especially if the child is playing. |
| browsers | Google Chrome, TV Bro | โ Yes. | Clean the cache once a week |
| Social media | Facebook, TikTok, Twitter | โ ๏ธ Conditionally. | They can send notifications. |
| System services | Google Play Services, Mi TV Launcher | โ No. | Closing will cause disruption |
Applications that should not be closed:
- ๐ซ com.xiaomi.mitv.upgrade is an update service.
- ๐ซ com.android.systemui is the system interface.
- ๐ซ com.google.android.gsf โ Google services (will cause login errors).
To check how much memory an application takes, go to Settings โ Device โ Memory. If an application takes more than 300-500 MB in the background (like Kodi with large libraries), it should be closed.