Voice Assistant ยซOK Googleยป ot Google can be useful for quickly searching or controlling a device without hands, but not all users Android are ready to put up with its constant activity. In addition to annoying false positives for random phrases, the function continuously monitors ambient sounds through the microphone, which raises privacy concerns. Even in standby mode, the assistant consumes battery power, analyzing the audio stream for commands.
In this article you will find all current methods of disabling "OK Google" on smartphones running Android 10โ15including bypassing restrictions on devices with firmware from Samsung, Xiaomi, OnePlus and other manufacturers. We will analyze both standard settings and hidden parameters that are not always obvious even to experienced users. Particular attention is paid to problems when the button to disable the assistant is blocked or is missing from the menu.
Why "OK Google" continues to work after disconnect?
Many users are faced with a situation where the assistant is supposedly disabled, but continues to respond to voice commands. The reason lies in multi-level architecture functions:
- ๐ Hardware acceleration: on some chipsets (for example, Qualcomm Snapdragon 8 Gen 2) processing of voice commands is partially performed at the processor level, bypassing the OS.
- ๐ฑ Manufacturer add-ons: Samsung Knox, MIUI Optimizations or ColorOS can restart the assistant service after updates.
- โ๏ธ Cloud synchronization: if an account is linked on the device Google, assistant settings can be reset through the company's servers.
To ensure that the function is deactivated, it is not enough to disable it in the application settings Google. It is necessary to combine several methods, which will be discussed below. On devices with Android 14+, you may need to disable the Google Play Services service via ADB, since standard methods are often blocked by the system.
Method 1: Standard shutdown via Google settings
On most devices c pure Android (for example, Pixel, Motorola, Nokia) the function is disabled through the app menu Google. The instructions are valid for Android versions 10โ15:
- Open the application Google (icon with the letter โGโ on a colored background).
- Tap on your profile avatar in the upper right corner โ select
Settings. - Go to section
Voice searchโVoice assistant. - Disable the switch
Hey Google(orOK Googleon old versions). - In the window that appears, confirm the action by clicking
Disable.
On devices with shells (One UI, MIUI, Realme UI), the path may differ. For example, on Samsung Galaxy you need to go to Settings โ Google โ Account and services โ Voice search. If the item Hey Google is not in the menu, then the function is disabled at the firmware level (see Method 3).
โ๏ธ Checking the disabling โOKโ Google"
Method 2: Disabling through Android settings (for all versions)
If the standard method did not work, try deactivating the assistant at the system level. This method is suitable for devices where the function is built into the firmware (for example, Xiaomi Redmi or Oppo Reno):
- Open
Settingsphone. - Go to section
Applications(orAll applications). - Find in the list Google (not to be confused with Google Play Services!) and tap on it.
- Select
Notificationsโ turn off all switches related to the voice assistant. - Go back and press
Permissionsโ findMicrophoneand set the valueDisable.
โ ๏ธ Attention: On some devices (for example, Huawei without Google services), this method may cause errors in the operation of other functions, such as voice dialing in Google Maps. In this case, use Method 4.
| Manufacturer | Path to settings | Features |
|---|---|---|
| Samsung | Settings โ Google โ Account โ Voice Search |
You may need to disable Bixby separately |
| Xiaomi/Redmi/Poco | Settings โ Applications โ Manage applications โ Google โ Permissions |
After updating MIUI, settings may be reset |
| OnePlus/Oppo/Realme | Settings โ System โ Language and input โ Voice input |
The function can be linked to ColorOS Assistant |
| Google Pixel | Settings โ Google โ Settings for applications โ Search, assistant and voice |
The most complete disabling among all brands |
Method 3: Disabling via ADB (for experienced users)
If the standard methods did not work, and the assistant continues to be activated, you will have to use Android Debug Bridge (ADB). This method is suitable for devices with root access or an unlocked bootloader, but can work without them on some firmware.
You will need:
- ๐ป A computer with installed ADB-tools.
- ๐ฑ Enabled
USB debuggingon the phone (Settings โ About the phone โ Build numberโ 7 taps to unlock developer mode). - ๐ USB cable (preferably original).
Instructions:
- Connect the phone to the PC and confirm trust in the computer on the device screen.
- Open the command line (Windows) or terminal (macOS/Linux) in the folder with
adb. - Enter the command to check the connection:
adb devicesThe serial number of your device should appear.
- Run the command to disable the voice assistant:
adb shell pm revoke com.google.android.googlequicksearchbox android.permission.RECORD_AUDIO - To completely disable it, also run:
adb shell pm disable-user --user 0 com.google.android.googlequicksearchboxโ ๏ธ Attention: This command will disable all functions of the application Google, including image search and voice input in other applications. To return only search, use:
adb shell pm enable com.google.android.googlequicksearchbox
What to do if ADB does not see the device?
1. drivers are installed (use Google USB Driver for Windows).
2. Try another USB cable (cheap cables often do not support data transfer).
3. Restart your phone and PC.
4. option USB debugging (security options) and Allow ADB debugging in charge-only mode.
5. On macOS/Linux, you may need to add a rule for udev (instructions are on the website Android Developers).
Method 4: Using third-party applications (without root)
If you donโt want to mess with ADB, you can use specialized utilities that block applications from accessing the microphone. Best options:
- ๐ก๏ธ App Ops (requires Android 6.0โ10.0) - allows you to disable permissions for individual functions Google without completely blocking the microphone.
- ๐ Microphone Blocker โ creates an โemptyโ audio stream to deceive system services (does not work on all devices).
- ๐ค Shizuku + App Ops โ a modern alternative for Android 11+ (requires connection via Shizuku Manager).
Example setup via App Ops:
- Download and install App Ops (or Shizuku for new versions of Android).
- Launch the application and provide access to the settings (you will need to enable
App Opsin the developer menu). - Find in the list Google (
com.google.android.googlequicksearchbox). - Disable permissions
MicrophoneiConstant activity in the background.
โ ๏ธ Attention: Some applications (for example Microphone Blocker) may conflict with antivirus or banking software apps. Before using, check the reviews for your phone model at 4PDA or XDA Developers.
If, after turning off the microphone, voice calls in WhatsApp or Telegramstop working, return the microphone resolution for these applications manually through the settings. Android. Selective blocking helps only for Google.
To check current permissions, use the ADB command:
adb shell dumpsys package com.google.android.googlequicksearchboxMethod 5: Complete removal of Google (for advanced users)
If you are ready to sacrifice all services Google for the sake of privacy, you can remove system applications, responsible for the voice assistant. This method requires root access or custom firmware (for example, LineageOS).
List of applications to remove (via Root Explorer or adb shell):
com.google.android.googlequicksearchbox- main application assistant.com.google.android.apps.googleassistantโ Google Assistant (if installed).com.google.android.asโ assistant update service.com.google.android.ttsโtext to speech (optional if you do not use voice input).
Commands for deleting via ADB (requires root):
adb shell
su
pm uninstall -k --user 0 com.google.android.googlequicksearchbox
pm uninstall -k --user 0 com.google.android.apps.googleassistant
After deletion:
- โ The microphone icon in the search bar will disappear.
- โ Notifications from the assistant will stop coming.
- โ Voice search in Google Maps and YouTube.
- โ Synchronization with Google Account (contacts, calendar) may be lost.
Removing system applications Google can lead to unstable operation of the firmware, especially on devices with Samsung Knox or MIUI. It is recommended to first create a backup copy via TWRP or Orange Backup.
On some devices (for example, Pixel), applications are restored after updating the OS. In this case, you will need to remove or install a custom one again. firmware without GApps.
To check the integrity of the system after removal, use the command:
adb shell pm verify --user 0 com.google.android.googlequicksearchboxAdditional measures: how to prevent re-enabling
Even after disabling "OK Google", the function can spontaneously activate after:
- ๐ Application updates Google via Play Market.
- ๐ฑ Phone firmware updates (especially on Samsung i Xiaomi).
- โ๏ธ Synchronizing settings with Google Account (if the function was previously enabled).
To avoid this:
- Freeze updates for the application Google:
- Open Play Market โ find Google.
- Tap on the three dots in the corner โ uncheck
Auto-update.
- Disable settings synchronization:
Settings โ Google โ Account and synchronization โ Data synchronization โ Disable "Application Settings" - Use a firewall to block connections:
- Install NetGuard or RethinkDNS.
- Block Internet access for
com.google.android.googlequicksearchbox.
On devices with Android 12+ it is also recommended to disable the function App Searchthat can indirectly activate the voice assistant:
Settings โ Google โ Settings for applications โ Search in applications โ Disable
FAQ: Frequently asked questions about disabling "OK Google"
Is it possible to disable "OK Google" only for specific applications?
Yes, but not through standard settings. 6.0โ10.0) or App Ops (for Android 6.0โ10.0) or Shizuku (for Android 11+) to selectively deny access to the microphone for individual functions Googlewithout affecting other applications. For example, you can disable voice search in Googlebut leave the microphone for WhatsApp.
Why after disabling โOK Googleโ voice dialing in Google Maps has stopped working?
This is due to the fact that Google Maps uses the same speech recognition service as the assistant. To return the function, allow microphone access for Google Maps in the Android settings (Settings โ Applications โ Google Maps โ Permissions), but leave the restriction for the main one. applications Google.
Will "OK Google" work if I just turn off the microphone in settings?
No, but it will also block the microphone for all other applications (calls, recording voice messages, etc. Better). use selective disabling via App Ops or ADBas described in Method 3.
Is it possible to disable โOK Googleโ on devices without Google services (for example, Huawei)?
On devices without GMS (for example, Huawei with AppGallery or Amazon Fire) there is no โOK Googleโ function by default. However, if you installed Google Services manually, the assistant could be activated. In this case, delete it. application Google via ADB or roll back to the stock firmware.
What to do if, after all the manipulations, โOK Googleโ still works?
This means that the function is built in at the firmware level (often found on Samsung i LG. Try:
- Install custom firmware without GApps (for example, LineageOS for microG).
- Use Xposed Framework with module Disable Flags to block system flags.
- Contact the manufacturer's support with a request to provide firmware without a voice assistant (unlikely, but some brands meet halfway).