Music services like Yandex Radio are often pre-installed on smartphones of Russian and Chinese brands - from Xiaomi and Redmi to Honor i Realme. Even if you do not use the service, it may automatically start, using up traffic, battery power and taking up memory space. In this article we will look at all possible ways to disable Yandex Radio on Android from basic settings to deleting system files for experienced users.
Important understand that methods differ depending on device manufacturerversion, Android and access rights. For example, on Samsung Galaxy with shell One UI the path to autorun settings will be different than on POCO F5 with MIUI 14. We took these nuances into account and collected universal solutions, and also indicated where root access may be required.
If you do not want to go into technical details, start with the first three methods - they do not require special knowledge. For those who are ready to experiment, at the end of the article there is a section about deleting system APK and blocking through ADB.
1. Disabling Yandex Radio autostart
The most common problem is that the service starts by itself after a reboot or connection to the Internet. This is due to the settings autorunthat manufacturers often enable by default. Here's how to fix it:
On most devices, the path looks like this:
Settings โ Applications โ Manage applications โ Yandex Radio โ Autorun.
Disable all switches in this menu. On MIUI (smartphones Xiaomi), additionally check the section Permissions โ Autorun and Show notifications.
- ๐ฑ For Samsung:
Settings โ Applications โ Yandex Radio โ Battery โ Optimizing the applicationโ select "Limited." - โ๏ธ For Honor/Huawei: In
Settings โ Applicationsfind Yandex Radio, thenLaunch โ Manage manuallyand disable all options. - ๐ For Realme/Oppo: Go to
Settings โ Additional settings โ Battery management โ Consumption optimizationand add the application to the list of optimized ones.
If "Autostart" is selected no, try an alternative path via Settings โ Battery โ Power saving mode. Here you can manually add Yandex Radio to the list of applications that should not run in the background.
Open the Yandex Radio application settings
Find the "Startup" or "Battery" section
Disable all startup switches
Check the "Notifications" section and disable their display-->
โ ๏ธ Attention: On some firmware (for example, ColorOS 13 on Oppo Reno) after disabling autorun, the application can be activated again after a system update. In this case, you will have to repeat the procedure or use the methods from the following sections.
2. Uninstalling updates and rolling back to the factory version
If Yandex Radio was preinstalled by the manufacturer, it will not be possible to completely remove it without root . However, you can roll back the application to the factory versionwhich often removes unnecessary functions and notifications. This is done like this:
- Open
Settings โ Applications โ Yandex Radio. - Click on the three dots in the upper right corner (or
Advanced). - Select
Uninstall updates(if the item is inactive, there are no updates). - Confirm the action. The application will return to the version that was at the time you purchased the phone.
After the rollback, check if there are still problems with autostart. If so, proceed to the next method. On some devices (for example, Samsung A52after the rollback you may need clear cache in the same menu). application settings.
| Manufacturer | Path to rollback updates | Additional actions |
|---|---|---|
| Xiaomi/Redmi | Settings โ Applications โ Management โ Yandex Radio โ Uninstall updates |
Clear cache and data |
| Samsung | Settings โ Applications โ Yandex Radio โ Menu (โฎ) โ Delete updates |
Disable in Battery โ Optimization |
| Honor/Huawei | Settings โ Applications โ Yandex Radio โ Storage โ Uninstall updates |
Disable background activity |
| Realme/Oppo | Settings โ Manage applications โ Yandex Radio โ Remove updates |
Add to "Deep optimization" |
โ ๏ธ Attention: On devices with Android 12+ after rolling back updates, the system can automatically download them again via Google Play. To avoid this, disable auto-update for Yandex Radio in settings Play Market.
3. Blocking notifications and background activity
Even if the application does not start itself, it can show notifications or run in the background, wasting resources. To avoid this:
- Go to
Settings โ Applications โ Yandex Radio โ Notifications. - Disable all switches (or select a category of notifications and disable them display).
- Return to the main application menu and find the section
BatteryorBackground activity. - Select an option
Limit background activityorOptimize.
On MIUI Additionally check:
Settings โ Battery and performance โ Battery management โ Select applications โ find Yandex Radio and set the mode Energy saving.
- ๐ For Samsung: In
Settings โ Notifications โ Additionalyou can completely disable notifications from the application. - ๐ For Honor: In
Settings โ Applications โ Yandex Radio โ DatadisableAuto-sync. - ๐ก For all devices: B
Settings โ Mobile network โ Data usagedeny Yandex Radio access to the mobile data.
If notifications continue to appear, check your settings Google Play Services. Sometimes Yandex services use it to display push notifications. Disable them in Settings โ Google โ Application notifications.
4. Removal via ADB (without root)
If the previous methods did not help, you can disable the application at the system level using ADB (Android Debug Bridge). This does not require root, but will require connecting the smartphone to the computer. Here are step-by-step guide:
- Enable
Developer mode 7 timeson your phone: go toSettings โ About phoneand click onBuild number. - Go back to
Settings โ System โ For developersand enableUSB debugging. - Connect the phone to the PC, install drivers ADB (for example, via Minimal ADB and Fastboot).
- Open the command line (or Terminal on Mac/Linux) and enter:
adb devicesMake sure that the device is detected.
- Run the command to disable Yandex Radio:
adb shell pm uninstall -k --user 0 ru.yandex.music(if it doesnโt work, try
com.yandex.radioorru.yandex.radio).
After execution of the command, the application will disappear from the menu and stop working, but its files will remain in the system. To return it, just update via Play Market or run the command:
adb shell cmd package install-existing ru.yandex.music
โ ๏ธ Attention: On some firmware (for example, EMUI on Huawei)ADB-commands may not work due to manufacturer restrictions. In this case, only obtainingrootor using alternative methods will help.
What to do if ADB does not see the device?
1. Check if debugging is enabled. via USB on the phone.
2. Install official drivers for your model (for example, Samsung USB Driver or Xiaomi ADB Driver).
3. Try a different USB cable (preferably original).
4. Restart your phone and PC.
5. On Windows, run the command line as an administrator.
5. Complete removal of the system APK (root required)
If you have root accessyou can delete Yandex Radio foreverby deleting its system files. experienced users, since incorrect actions can lead to system inoperability.
To remove, you will need a file manager with support root (for example, Root Explorer or Solid Explorer) or terminal Follow the instructions:
- Open Root Explorer and go to the folder
/system/priv-app/or/system/app/. - Find folders with names:
YandexMusicYandexRadioRuYandexMusic
.bak to enable recovery).An alternative method is through a terminal with rights root:
sumount -o rw,remount /system
rm -rf /system/priv-app/YandexMusic
rm -rf /system/app/YandexRadio
mount -o ro,remount /system
reboot
| Method | Requires root | Reversibility | Risks |
|---|---|---|---|
| Disabling autorun | โ No | โ Easy to return | Minimal |
| Removing updates | โ No | โ Auto-update | Average (can return notifications) |
| ADB blocking | โ No | โ Recovery command | Low |
| APK removal | โ Yes | โ Difficult (requires backup) | High (risk of "brick") |
โ ๏ธ Attention: Removing system applications can disrupt the operation of the manufacturer's proprietary services (for example, MIUI Music on Xiaomi or Samsung Music). Before deleting, make a backup copy of the folder /system via TWRP or Titanium Backup.
6. Alternative methods: disabling via Magisk and debloater
If root you have it, but you donโt want to delete files manually, you can use specialized tools:
- ๐ง Magisk Module: Install the module Universal Debloater or Xiaomi Debloater (for MIUI) via Magisk Manager. After activating the module Yandex Radio will be disabled at the system level.
- ๐งน Debloater applications: apps like App Inspector or Package Disabler (require
rootorADB) allow you to disable pre-installed applications without deleting files. - ๐ฆ Custom firmware: Installing LineageOS, Pixel Experience or other firmware without bloat will solve the problem once and for all, but will require unlocking bootloader.
For users Xiaomi there is a separate tool - MIUI Hidden Settings (available in Magisk Repo). It allows you to disable system apps through a GUI without manually editing files.
Using Magisk and debloaters is the safest way to remove system apps from root. These tools create backup copies and make it easy to return everything back if necessary.
7. What to do if nothing helps?
If you have tried all the methods, but Yandex Radio continues to appear, perhaps the problem is:
- ๐ Firmware updates: The manufacturer could return the application after updating Android. Check for new versions in
Settings โ System update. - ๐ฑ Branded services will help: Some brands (for example, Huaweiintegrate Yandex Radio into their music applications. In this case, only blocking through
firewall(for example, NetGuard). - ๐ ๏ธ Damaged settings: Reset application settings in
Settings โ System โ Reset โ Reset application settings(user data is not affected).
The last resort is Reset to factory settingsBefore doing this, make a backup copy of your data via Google Account or Titanium Backup. After the reset, immediately disable autorun Yandex Radio and deny it access to the Internet.
If the problem persists even after the reset, most likely the application hard-wired into the firmware. In this case, only flashing to a custom version will help (for example, Android (For example, LineageOS) or buying a device without pre-installed software (for example, Google Pixel or Nothing Phone).
FAQ: Frequently asked questions
Is it possible to remove Yandex Radio without root?
Yes, but not completely. You can disable autorun, delete updates and block notifications (sections 1โ3). To completely remove system files, you need root or ADB (Sections 4โ5).
Why does Yandex Radio appear again after autorun is turned off?
This is due to background services. Is it safe to use? ADB to remove applications? the manufacturer (for example, MIUI Optimization on Xiaomi or Knox on Samsung).The solution is to use ADB or disable these services via root.
Is it safe to use ADB to uninstall apps?
Yes, if you follow the instructions. The command pm uninstall -k --user 0 deletes the application only for the current user, without affecting system files. The risk is minimal, but before executing the commands, make sure that USB Debugging is enabled and the device is recognized in adb devices.
How to return Yandex. Radio after deletion via ADB?
Run the command:
adb shell cmd package install-existing ru.yandex.music
Or update the application via Google Play. If you deleted files manually via root, you will need to restore them from a backup.
Is there a legal way to ask the manufacturer to remove Yandex Radio?
Technically, no. Manufacturers enter into contracts with Yandex to pre-install services, and the user cannot formally request their removal. However, you can:
- Leave a review in Google Play with a request to add a deletion option.
- Write in support of the brand (for example, Xiaomi or Samsung) with a complaint about the imposed software.
- Select a device with โpureโ Android (for example, Google Pixel or Nothing Phone 2).