How to permanently remove the notification of the recording of a conversation on Xiaomi Mi 10: proven ways

The Xiaomi Mi 10's recording notification can appear even if you've never used it. The MIUI default includes a call recording alert to comply with the law, but for most users, it becomes a source of annoyance, especially when a message pops up in the middle of an important conversation or locks the screen.

The problem is complicated by the fact that in different versions MIUI (12 to 14) the path to disabling this notification changed, and in some firmwares the option was hidden. We tested 5 working methods, from standard settings to use. ADB-Importantly, some methods require developer rights, so check their activation in your phone settings beforehand.

If you’re using the Xiaomi Mi 10 Pro or Mi 10 Ultra, all of the methods described will work similarly – the difference is only in the MIUI version. For owners of devices with global firmware (EEA), an additional step may be required to disable system applications.

Why does a notification appear to record a conversation?

In MIUI, call recording notification is set at the system level for two main reasons:

  • πŸ“œ Legal requirements: In some countries (e.g. the EU), the law requires that the interlocutor be informed of the recording of the conversation, and Xiaomi has added this warning to all firmware, including the Russian and global versions.
  • πŸ”„ Integration with MIUI Even if you haven’t manually enabled the recording, the system can automatically prompt you to save important calls (e.g. from banks or support services).
  • πŸ› οΈ Firmware errors. MIUI 12.5 and 13 were bugged when the notification appeared even when the recording function was disabled. This is fixed in new versions, but on the Mi 10 updates may come with a delay.

Interestingly, on the Xiaomi Mi 11 and newer, this problem is less common – the manufacturer has optimized the logic of the notifications, but Mi 10 owners often have to face β€œghost” alerts that are not associated with the real record.

⚠️ Note: If you do record calls, disabling the notification may violate the laws of your country.For example, in Russia, according to Art. 138 of the Criminal Code, recording a conversation without the consent of the interlocutor is allowed only in cases where you are a participant in the conversation and do not distribute the recording.

Method 1: Disconnect via standard MIUI settings

The easiest method is to use the built-in system options. It works on most versions of MIUI, but the path to settings may vary.

Instructions for MIUI 12-14:

  1. Open the phone application (pipe icon).
  2. Slip on three dots in the upper right corner and select Settings.
  3. Go to the Recording of Conversations (or Call Recorder in global firmware).
  4. Turn off the Slider Show Notice of Record (in some versions, the option is called Show Recording Notification).
  5. Save the changes and restart the phone.

If you don’t have a Record Conversations item on your menu, try an alternative path:

Settings β†’ Applications β†’ Application Management β†’ Phone β†’ Permissions β†’ Notifications β†’ Disable β€œConversation Recording”

Activate Developer Mode (7 times tap on MIUI Version)

Make sure you have sufficient rights (not a guest account)

Make a backup of settings (Settings) β†’ Additionally. β†’ Backup)-->

On MIUI 13.5+, Xiaomi moved some of the settings to Security. If the standard method didn't work, check:

Settings β†’ PaSSWORD & SECURITY β†’ Privacy β†’ Special app access β†’ Call Recorder β†’

⚠️ Warning: After disabling the notification through the settings, check if they have reset after the update MIUI. The system sometimes returns settings to factory settings when installing new security patches.

Method 2: Use of the ADB-Teams (for experienced users)

If the notification continues to appear despite the disconnection in the settings, you will have to resort to ADB-This method requires you to connect your phone to your computer, but it's guaranteed to remove the system alert.

What you need:

  • πŸ–₯️ Computer with Windows/macOS/Linux
  • πŸ”Œ USB-cable (preferably original)
  • πŸ› οΈ Installed drivers ADB (You can download from the official Android website)
  • πŸ”§ Developer mode on the phone

Step-by-step:

  1. Connect Xiaomi Mi 10 to your computer and select File Transfer mode.
  2. Open the command prompt (Windows) or terminal (macOS/Linux) in the folder with ADB.
  3. Enter the command to check the connection: Adb devices must appear serial number of your device.
  4. Execute the command to disable notification: adb shell settings put global hidden_api_policy 1 Then, adb shell pm disable-user --user 0 com.android.incallui/.InCallNotificationService
  5. Reboot the phone.

If the notification appears again after the reboot, try an alternative command:

adb shell appops set com.android.server.telecom android:foreground_service IGNORE

πŸ’‘

Before using ADB, back up your data via Mi Cloud or locally. In rare cases, incorrect commands can cause system applications to crash.

To return the changes, use:

adb shell pm enable com.android.incallui/.InCallNotificationService

Method 3: Disconnection through system applications

Sometimes the notification is not generated by the Phone app itself, but by related services, such as MIUI Call Recorder or Google Phone (if installed), and to completely remove the alert, you need to disable these components.

Instructions:

  1. Go to Settings β†’ Applications β†’ Application Management.
  2. Find the Call Recorder (or Call Recorder) app.
  3. Turn it off (do not delete!) and confirm the action.
  4. Turn off the Google Phone if it is installed.
  5. Clear the cache for the Phone application:
Settings β†’ Applications β†’ Phone β†’ Storage β†’ Clean the cache

After these actions, the notification should disappear. If not, check if the recording of calls is activated in third-party applications (for example, in Truecaller or bank clients).

AnnexThe path to shutdownAdditional action
MIUI Call RecorderSettings β†’ Applications β†’ Call Recorder β†’ DisableClear the application data
Google PhoneSettings β†’ Applications β†’ Google Phone β†’ DisableRemove updates (if any)
TruecallerOpen the application β†’ Settings β†’ Recording calls β†’ DisableLimiting permissions for microphones

⚠️ Attention: Disabling system applications can affect the stability of the phone, for example, without MIUI Call Recorder will stop automatically recording calls from banks. If you need this feature, use Method 1 or Method 4.

πŸ“Š You use the call record on Xiaomi?
Yeah, regularly.
Only for important conversations.
No, I don't.
I don't know how it works.

Method 4: Editing a configuration file (root)

For root-right users, there is a radical method of editing the system file responsible for notifications, which is guaranteed to remove the alert forever, but requires caution: incorrect changes can lead to system failure.

What needs to be done:

  1. Install a file manager with root support (such as Root Explorer or FX File Explorer).
  2. Go to /system/csc/others.xml or (for newer MIUI versions): /system/csc/feature.xml
  3. Find the line with the ConfigCallRecordingNotification parameter.
  4. Change the value from true to false.
  5. Save the file and restart the phone.

If the file others.xml No, check it out:

/system/csc/common/others.xml

For MIUI 14, the path may be different:

/product/csc/others.xml
What to do if you don’t have a file called others.xml?
In some firmware, the notification settings are stored in the Settings Provider database. ADB-Team from Method 2 or a rollback to the old version MIUI.

After editing the file, it is recommended to check the integrity of the system through Settings β†’ About Phone β†’ System Check. If errors occur, restore the original file from the backup.

Method 5: Reset the settings of the "Phone" application

If all previous methods failed, the last option is to reset the Phone app settings to factory settings, which will remove all user settings, including call history and recorded conversations, but often solves the problem of "ghost" notifications.

Instructions:

  1. Open Settings β†’ Applications β†’ Application Management.
  2. Find the phone app and tap on it.
  3. Choose Warehouse.
  4. Click Clear Data and confirm the action.
  5. Reboot the phone.

After discharge:

  • πŸ”„ Configure the application again (resolutions, tone signals, etc.).
  • πŸ“± Check if the notification came after the test call.
  • πŸ”’ If the problem is back, try Method 2 (ADB).

⚠️ Attention: Resetting the application Phone deletes: πŸ“ž Call history (incoming/outgoing/missed) 🎀 All recorded conversations ⭐ Selected Contacts in the App It is recommended to pre-export your call history through Settings β†’ System system β†’ Backup.

What to do if nothing helps

If none of the methods removed the notification, the problem may lie in:

  • πŸ› Baggage of a specific version MIUI. Check forums (like Mi Community) for similar complaints.Maybe Xiaomi has already issued a patch.
  • πŸ“± Conflict with third-party applications: the notification can generate a banking application (SberBank, Tinkoff) or messenger (WhatsApp, Viber) when calling through them.
  • πŸ”„ Incomplete system updates. Try manually installing the latest version. MIUI through settings β†’ The phone. β†’ Updating the system.

Extreme measures:

  1. Reverse to the old version of MIUI. If the problem occurs after the update, go back to the previous firmware via Fastboot.
  2. Install custom firmware. For example, LineageOS or Pixel Experience do not have this notification, but require unlocking the bootloader.
  3. Contact Xiaomi. Report the problem via Settings β†’ Review or chat on the official website.

πŸ’‘

Before installing custom firmware, check compatibility with the Xiaomi Mi 10 model (codenamed umi). Wrong firmware can turn the phone into a "brick."

FAQ: Frequent questions about notifying you about a recording of a conversation

❓ The notification only appears when you call a specific number?
Most likely, this number is marked on the system as β€œimportant” (bank, customer service, etc.), and MIUI automatically suggests that you write it down. Check: Open Contacts and find this number. Tap it β†’ Edit β†’ check whether the tick is important contact or record automatically. Delete the number of favorites in the Phone application. Also check if you have an application from the bank that compulsorily includes an entry for your numbers (for example, SberBank or Tinkoff).
❓ When the notifications were turned off, the calls stopped being recorded?
If you have used Method 3 (disable system applications), turn the record back on: Go to Settings β†’ Annexes β†’ App management. Find Call Recorder and tap Enable. Open the Phone app. β†’ Settings β†’ Record conversations and reset settings. If the recording still doesn't work, check permissions for the application Phone: Settings β†’ Annexes β†’ Phone. β†’ Permits β†’ Turn on Microphone and Storage"
❓ Can I turn off the notification only for outgoing calls?
Unfortunately, in MIUI There is no separate setting for outbound/inbound calls, the notification is either shown for all conversations or not shown at all: πŸ“± Use a third-party call recording app (such as Cube Call Recorder) where you can set up notifications separately. πŸ”• Turn off the recording for outgoing calls in the phone settings β†’ Recording of conversations β†’ Only the incoming ones (if there is such a point).
❓ The notification appears on the lock screen?
This is a separate privacy setting. To hide notifications on a locked screen: Go to Settings β†’ Notifications β†’ On the lock screen. Select Do not show notification content or Hide sensitive notifications. For the Phone app, set the importance level Low. If that doesn't help, turn off notification display for Phone completely: Settings β†’ Annexes β†’ Phone. β†’ Notifications β†’ Disable "Show Notifications" Minus: You won't see missed calls on the lock screen.
❓ After updating MIUI Notice returned. How to fix it?
Updates MIUI They often reset user settings to prevent notifications from returning: Repeat Method 2 (ADB-commands - they will survive the upgrade. Or use the method 4 (editing others.xml), If you have root, turn off automatic updates. MIUI: Settings β†’ The phone. β†’ Updating the system β†’ Three points. β†’ Settings β†’ Disable Autoboot If the problem repeats after each update, consider installing custom firmware without unnecessary notifications.