Voice assistant Alice ot Yandex has firmly entered the ecosystem of Android devices, offering users a convenient interface for controlling a smartphone, searching for information and executing voice commands. However, not everyone likes her constant presence in the system: some are worried about data confidentiality, others are bothered by background processesconsuming battery power, and some simply prefer alternative assistants like Google Assistant or Siri.

Unlike standard applications, Alice is often integrated into the firmware at the level of system services, which makes it difficult to remove. In this article we will look at all possible methods from simple disabling to completely deleting system files (including methods for devices with root-access). You will also learn how to check whether the assistant is really deactivated, and what to do if, after deletion, problems arise with the operation of other services Yandex.

Warning: Some methods require technical skills and may affect system stability. If you are not sure of your actions, use only official methods of disabling.

Why do users want to remove Alice from Android

There are several reasons for deleting a voice assistant, and they are not always related to technical problems. Here are the most common motives:

  • ๐Ÿ”‹ Increased battery consumption: Alice works in the background, constantly listening to voice commands (if the โ€œOkay, Aliceโ€ option is activated). This can eat up to 10-15% charge per day on budget devices.
  • ๐Ÿ›ก๏ธ Privacy: The assistant records and analyzes voice requests, which causes concerns among users who monitor their privacy. Data is transmitted to servers Yandex, and not everyone trusts their processing.
  • ๐Ÿค– Conflict with other helpers: On devices with pre-installed Google Assistant both assistants can interfere with each other by launching simultaneously on voice commands.
  • ๐Ÿ“ฑ System garbage: Even if you do not use Alice, its services take up space in memory and cache, and updates are downloaded automatically.
  • ๐ŸŽต Intrusive notifications: The Assistant can send advertising push notifications about new features or promotions Yandex.

Interestingly, in some firmware (for example, on smartphones Xiaomi or Realme) Alice is installed by default along with the application package Yandex, even if the user never agreed to install it. This causes additional irritation.

๐Ÿ“Š How do you feel about voice assistants on smartphone?
I use it daily
Sometimes I use it
Disconnected immediately
I donโ€™t trust them
Donโ€™t care

Method 1: Disabling Alice without removal (official method)

If you do not need to completely remove the assistant, but just stop its work, use the built-in settings. This method is safe and does not require superuser rights.

Instructions:

  1. Open the application Alice (icon with a microphone on a blue background).
  2. Tap on the assistant's avatar in the upper right corner.
  3. Select Settings โ†’ Voice assistant.
  4. Disable the switches:
    • ๐Ÿ”Š Answer to "Okay, Alice"
    • ๐Ÿ“ฑ Show on lock screen
    • ๐Ÿ”” Notifications from Alice
  • Go back to the main settings and select About the app โ†’ Stop work (or Forced stop in the application menu).
  • This will disable all active functions, but the application itself will remain in the system. To prevent it from updating automatically:

    1. Go to Settings โ†’ Applications โ†’ Alice.
    2. Tap on the three dots in the upper corner and select Delete updates.
    3. Disable auto-update in Google Play (find the application in the list and uncheck the Auto-update).
    4. โš ๏ธ Attention: On some devices (for example, HONOR or OPPO) option Stop working may be missing. In this case, use the methods from the following sections.

      โ˜‘๏ธ Checking Alice is disabled

      Done: 0 / 4

      Method 2: Uninstall via ADB (without root)

      If disabling is not enough, and root-no rights, you can delete Alice using Android Debug Bridge (ADB). This method works on most devices, but requires connection to a computer.

      What you will need:

      • ๐Ÿ’ป Computer with installed drivers ADB (you can download from the website Android Developers).
      • ๐Ÿ“ฑ USB cable for connecting a smartphone.
      • ๐Ÿ”ง Enabled USB debugging on the phone (Settings โ†’ About phone โ†’ Build number โ€” tap 7 times to unlock the developer menu, then enable debugging in Settings โ†’ System โ†’ For developers).

    Step-by-step guide:

    1. Connect the phone to the PC and open the command line (cmd on Windows or Terminal on macOS/Linux).
    2. Enter the command to test the connection:
      adb devices

      The name of your device should appear.

    3. Delete Alice with the command:
      adb shell pm uninstall --user 0 ru.yandex.alice

      If the package is not found, try alternative identifiers:

      adb shell pm uninstall --user 0 com.yandex.browser.alice
      

      adb shell pm uninstall --user 0 ru.yandex.searchplugin

    4. Reboot the device.

    After executing these commands, the application will disappear from the menu, but its system files will remain. This means that after resetting the settings or updating the firmware Alice it may return.

    โš ๏ธ Attention: On some devices (for example, Samsung s One UI) Yandex can restore the application after a reboot. In this case, you will need to repeat the procedure or use rootmethods.
    What to do if ADB does not see the device?

    1. Check if USB debugging is enabled on your phone.

    2. Install drivers for your model (for example, Samsung USB Driver for Samsung devices).

    3. Try a different USB cable or port.

    4. Restart your phone and PC.

    5. At the command line, enter:

    adb kill-serverthen adb start-server

    Method 3: Complete removal with root access

    If you have rootrights, you can delete Alice at the system file level This is the most radical method, but it guarantees that the assistant will not return after updates.

    Warning: Incorrect actions with root can lead to device inoperability. Make a backup copy (nandroid backup) before starting.

    Instructions:

    1. Install a file manager with support root (for example, Root Explorer or Solid Explorer).
    2. Go to the folder /system/priv-app/ or /system/app/ and find files associated with Alice:
      • YandexAlice.apk
      • YandexSearchPlugin.apk
      • BrowserAlice.apk
  • Delete the found files (or rename them by adding an extension .bak).
  • Clear the cache and data in /data/data/ru.yandex.alice/.
  • Reboot the device.
  • For reliability, also remove Alice via Titanium Backup (if installed):

    1. Open Titanium Backup.
    2. Find Alice in the list of applications.
    3. Select Delete! (not Freeze).
    Deletion method Requires root Restored after update Risk to the system
    Disable in settings โŒ No โŒ No โœ… No
    ADB removal โŒ No โœ… Yes (sometimes) โš ๏ธ Low
    Removal via root โœ… Yes โŒ No โš ๏ธโš ๏ธ High
    Flashing โœ… Yes โŒ No โš ๏ธโš ๏ธโš ๏ธ Critical
    ๐Ÿ’ก

    Before deleting system files, check their dependencies! Some applications Yandex (for example, Yandex.Browser or Yandex.Maps) may stop working without components Alice.

    Method 4: Removal via custom Recovery (TWRP)

    If your device has TWRP Recoveryinstalled, you can delete Alice without full access to root. This method is suitable for experienced users.

    What you need do:

    1. Download archive for deletion (for example, YandexAppsRemover.zip) or create your own .zipfile with the deletion script.
    2. Reboot the phone into mode TWRP (usually by pressing Power + Volume Up).
    3. Select Install and specify the path to the downloaded archive.
    4. Confirm the installation and wait for completion.
    5. Clear the cache (Wipe โ†’ Cache/Dalvik) and reboot the device.
    6. Example script for updater-script (if you create an archive yourself):

      ui_print("Deleting Alice...");
      

      delete_recursive("/system/priv-app/YandexAlice");

      delete_recursive("/system/app/YandexSearchPlugin");

      delete_recursive("/data/data/ru.yandex.alice");

      ui_print("Ready!");

      โš ๏ธ Attention: Not all custom firmware supports deleting system applications via TWRPIf after the procedure the phone does not boot, restore the backup (Backup โ†’ Restore).

      Method 5: Reflashing the device (last resort method)

      If none of the methods helped, a radical solution remains - complete flashing devices with a clean version of Android (for example, LineageOS or Pixel ExperienceThis will remove all pre-installed applications, including Alice.

      Pros of the method:

      • ๐Ÿงน Complete cleaning of unnecessary software.
      • ๐Ÿ”„ Ability to select firmware without unnecessary services.
      • ๐Ÿš€ Increased performance (on custom firmware without "garbage").

      Disadvantages:

      • โš ๏ธ Risk of the device being "bricked" in case of an error.
      • โณ Loss of warranty (if it is still valid).
      • ๐Ÿ”ง Requires unlocking the bootloader (bootloader).

    Instructions (briefly):

    1. Unlock bootloader (each brand has its own procedure, for example, for Xiaomi you need to obtain permission via Mi Unlock Tool).
    2. Install TWRP Recovery.
    3. Download the appropriate firmware (check compatibility with your phone model!).
    4. Make a full backup of the current system.
    5. Flash the new firmware via TWRP.

    After flashing Alice it will disappear forever, but you will have to configure the device from scratch.

    ๐Ÿ’ก

    Flashing is the last chance to get rid of pre-installed applications. Use this method only if other methods have not worked and you are prepared for possible risks.

    How to check that Alice has been completely deleted

    Even after deletion, some processes may remain active. Here's how to make sure that the assistant is really uninstalled:

    1. Check in the settings:
      • Open Settings โ†’ Applications and find Alice in the list. If it is not there, the first sign of success.
      • Try to say โ€œOkay, Aliceโ€ - the assistant should not respond.
    2. Checking background processes:
      • Install the application CPU Monitor or Greenify and check for processes with names yandex.alice or searchplugin.
  • Checking system files (for root):
    • Open Root Explorer and make sure that there are no folders with /system/ no folders with Alice in.
    • Run in Terminal Emulator the command:
      su
      

      pm list packages | grep yandex

      If there is no in the output ru.yandex.alice โ€” the application has been deleted.

    • If after checking you find that Alice is still active, repeat the removal procedure or try another method.

      What to do if problems arise after removing Alice

      In rare cases, deletion Alice may lead to disruptions in other services Yandex or even systems. Here are typical problems and their solutions:

      Problem Possible cause Solution
      Not works Yandex.Browser Dependent libraries removed Reinstall the browser or use an alternative (Chrome, Firefox)
      Errors when updating the firmware System files damaged Restore stock firmware via Fastboot or ODIN
      Continuous error notifications Cached data remains Clear the folder /data/data/ru.yandex.alice manually
      The phone does not boot Critical system files have been deleted Restore the backup via TWRP or flash the stock firmware

      If the problem is serious (for example, bootloop -cyclic reboot), try the following steps:

      1. Boot into Safe Mode (usually by holding down the power button and selecting the appropriate item).
      2. If the phone boots up, delete recently installed applications or roll back the changes.
      3. If Safe Mode does not help, flash the stock firmware via Fastboot or ODIN (for Samsung).
    โš ๏ธ Attention: If you are not sure of your actions, contact a service center. Self-recovery can aggravate the problem.

    FAQ: Frequently asked questions about removing Alice

    Is it possible to remove Alice without root and ADB?

    Yes, but just disable Complete removal without root or ADB impossible, because Alice is often a system application. You can:

    • Disable it in the settings (see Method 1).
    • Delete updates via Settings โ†’ Applications.
    • Hide the icon from the main screen.

    However, background processes may continue to run.

    Will Alice return after resetting the settings?

    Yes, if you deleted it without root (via ADB or disabling). When resetting to factory settings, all system applications are restored. To avoid this:

    • Use rootmethods for complete removal.
    • Install custom firmware without Yandex-services.
    Can deleting Alice affect the operation of Yandex.Maps or Yandex.Music?

    Possible if these applications depend on shared libraries YandexFor example:

    • Yandex.Maps may lose the voice search function.
    • Yandex.Music may not show recommendations related to Alice.
    • Solution: Reinstall problematic applications or use alternatives (Google Maps, Spotify).

    How to remove Alice from Xiaomi devices where it is preinstalled?

    On smartphones Xiaomi (especially on MIUI) Alice is often protected from deletion. Options:

    1. Use ADB (see Method 2).
    2. Install TWRP and delete via custom recovery.
    3. Flash MIUI without Yandexservices (for example, the European version of the firmware).

    On some models (Redmi Note 10, POCO X3) it helps to disable it through Settings โ†’ Applications โ†’ Manage applications โ†’ Alice โ†’ Disable.

    Is there a legal way to ask Yandex to delete my voice data?

    Yes, Yandex provides the ability to delete recorded voice requests. To do this:

    1. Go to the site Yandex.Passport.
    2. Select Data management โ†’ Query history.
    3. Find the section Voice requests and click Delete.

    This will not delete Alice from the phone, but it will clear your history of interaction with assistant.