How to turn off the warning on the recording of a conversation on Xiaomi Poco X3 Pro: all ways

Owners of Xiaomi Poco X3 Pro often face the annoying notification โ€œThis conversation is recordedโ€ during phone calls โ€“ even if the recording function is disabled. This is standard MIUI firmware behavior, which is associated with legal requirements in some countries (for example, India or the EU), but for most users, such a warning is excessive and only interferes.

In this article, weโ€™ll break down all the working ways to disable this notification on the Poco X3 Pro, including:

  • ๐Ÿ”ง Settings through the standard menu MIUI (rootless)
  • ๐Ÿ“ฑ The hidden parameters of the developer and ADB-team
  • ๐Ÿ› ๏ธ Editing system files (requires root)
  • ๐Ÿ”„ Alternative methods for different versions MIUI (12, 13, 14)

Important: Some methods may require unlocking the bootloader or superuser rights โ€” weโ€™ll point out where this is needed. Also note that after updating the firmware settings may reset.

๐Ÿ“Š You often record telephone conversations?
Yeah, regularly.
Only important calls.
I never write it down.
I tried it, but it didn't come in handy.

Why is there a warning about recording a conversation?

The Call Recording Notification is built into MIUI firmware for two main reasons:

  1. Legal requirements: In some countries (e.g. India), operators are required to notify subscribers of recording conversations, and Xiaomi has added this warning globally, even for regions where it is not required.
  2. Call recording feature: MIUI has a built-in call recording (Settings โ†’ Applications โ†’ Calls โ†’ Recording conversations) warning appears even if the function is turned off in settings, but is active at the system level.

On the Poco X3 Pro (surya/karna model), this notice may be duplicated:

  • ๐Ÿ“ž At the beginning of each outgoing/incoming call
  • ๐Ÿ”Š In the top notification panel during the conversation
  • ๐Ÿ“ข Voice communication (in some regions)

โš ๏ธ Note: Disabling the system notification does not violate the law if you do not record calls without the consent of the interlocutor.In some countries (for example, Russia), recording a conversation without notifying another participant may be considered a violation of article 138 of the criminal code of the Russian Federation.

Method 1: Disconnect via MIUI settings (without root)

The easiest method is to use built-in MIUI options. It works on most firmware versions (12.5โ€“14), but may vary depending on the regional build.

Update MIUI to the latest version | Check the firmware region (in Settings โ†’ About Phone) | Backup settings (Settings โ†’ Additional โ†’ Backup) | Make sure the call recording function is turned off

-->

Step 1: Check the current recording settings

First, make sure that the call recording function is actually disabled:

  1. Open the phone application (pipe icon).
  2. Press three points (โ‹ฎ) top-right โ†’ Settings.
  3. Select the Conversation Record.
  4. Make sure the slider is in the off position for everyone. SIM-map.

Step 2: Disable notifications in the settings of the Phone application

If the notification continues to appear, try:

  1. Go to Settings โ†’ Applications โ†’ Application Management.
  2. Find the Phone app (or com.android.dialer) and open its settings.
  3. Select Notifications โ†’ Call notifications.
  4. Turn off the option to Show Record Notice (or similar).

On some versions of MIUI, this item may be called differently:

  • ๐Ÿ“Œ Warning of the recording
  • ๐Ÿ“Œ System call notifications
  • ๐Ÿ“Œ Additional settings โ†’ Notice of confidentiality

โš ๏ธ Attention: On firmware for India (IN) EU (EEA) This item can be blocked. In that case, move to the method of ADB.

๐Ÿ’ก

If there is no option in the settings to disable the notification, try changing the firmware region to Global or Russia via Settings โ†’ Additional โ†’ Region. After changing the region, restart your phone.

Method 2: Disconnect via ADB (without root)

If the standard settings did not help, you can turn off the notification using ADB-This method does not require superuser rights, but it will require the phone to be connected to a computer.

Step 1: Preparation

You'll need:

  • ๐Ÿ–ฅ๏ธ Computer with Windows/Linux/macOS
  • ๐Ÿ“ฑ USB-cable (preferably original)
  • ๐Ÿ› ๏ธ Utility. ADB (Platform Tools by Google

Download and unpack the platform-tools into any folder.

  1. Settings โ†’ About Phone โ†’ 7 times click on the MIUI version (activates the developer mode).
  2. Back to Settings โ†’ Additionally. โ†’ For developers.
  3. Turn on USB debugging and confirm the permission.

Step 2: Implementation ADB-team

Connect your phone to your computer and execute it in the terminal (from the ADB folder):

adb devices

(Poco X3 Pro should be serial numbered. If not, check the drivers.)

adb shell settings put global hide_call_recording_notification 1

This command adds a system parameter that hides the notification. Once executed, restart the phone.

If the team doesnโ€™t work, try an alternative:

adb shell am start -n com.android.settings/.Settings\$CallRecordingNotificationSettings

This will open a hidden menu of write notification settings (not working on all versions of MIUI).

๐Ÿ’ก

ADB-Reversible method: to return the notification, execute the same command with 0 instead of 1.

Step 3: Checking the Results

After the reboot:

  • ๐Ÿ“ž Call another number and check if the notification appears.
  • ๐Ÿ” Make sure there is no record icon in the notification panel (microphone in square).

โš ๏ธ Note: On some firmware (for example, MIUI 13.0.4+ for India) ADB-The command may not work due to manufacturer limitations, and then you'll need to edit the system files.

Method 3: Editing system files (requires root)

If the previous methods didn't work, the most radical way is to edit system files.

  • ๐Ÿ”“ Unlocked bootloader (official instructions Xiaomi)
  • ๐Ÿ›ก๏ธ Superuser rights (Magisk or SuperSU)
  • ๐Ÿ“ A file manager with root access (e.g., Root Explorer or Mixplorer)
What happens if you incorrectly edit system files?
Incorrectly changing files in /system may lead to: ๐Ÿ”„ Located reboot (bootloop) ๐Ÿ“ต Loss of net or sound ๐Ÿ”ง Always back up before editing! For example, through TWRP: Backup โ†’ System Image.

Step 1: Finding the answering file

The notification of the recording of the conversation is controlled by the file:

/system/priv-app/Dialer/Dialer.apk

or (in new versions of MIUI):

/system/product/priv-app/Dialer/Dialer.apk

It may also be necessary to edit:

/system/build.prop

Step 2: Change the Dialer.apk file

Open the file. Dialer.apk into APK-Editor (such as APKTool) and find a line:

bool mShowRecordingNotification = true;

Replace true with false, save the file, and rewrite the original.

  1. Reboot the phone.
  2. Clear the cache of the Phone app (Settings โ†’ Apps โ†’ Phone โ†’ Storage โ†’ Clear the cache).

Step 3: Edit build.prop (extra)

If the notification remains, add a line to /system/build.prop:

persist.radio.call_recording_notification=false

Save the file and restart the device.

MethodNeed root?Does it work on MIUI 12/13/14?Risk to the system
MIUI settingsโŒ No.โœ… Yeah, not always)โš ๏ธ Low.
ADB-teamโŒ No.โœ… Yeah (except) IN/EEA)โš ๏ธ Medium.
Editing by Dialer.apkโœ… Yes.โœ… Yes.โ— High-pitched
Change to build.propโœ… Yes.โœ… Yes.โ— High-pitched

Method 4: Alternative solutions

If none of these methods worked, consider alternatives:

1.Use of a third-party application for calls

Set up an alternative call, such as:

  • ๐Ÿ“ž Google Phone (from Google Play)
  • ๐Ÿ“ฑ Truecaller (has a built-in notebook without notifications)
  • ๐Ÿ”— Simple Dialer (minimalist call without unnecessary functions)

After installation:

  1. Open Settings โ†’ Applications โ†’ By default โ†’ Phone application.
  2. Select the installed call.

2. Change of the firmware region

Some firmware (e.g. IN-India) has a hard-wired notification, so the solution is to change the MIUI region:

  1. Download firmware for another region (e.g. Global or Russia).
  2. Install it via TWRP or Fastboot (instruction: XDA Developers).

โš ๏ธ Note: Changes in the region may lead to: ๐Ÿ“ต Network loss (if the firmware does not support your frequencies) ๐Ÿ”ง Reset all data (return all data!) ๐Ÿ“ฑ Loss of warranty (if the loader is unlocked)

3.Return to the old version of MIUI

If the notification comes after the update, you can return the previous firmware version. For example, on the Poco X3 Pro in MIUI 12.0.8 this problem was not.

  1. Download the desired version from the official website.
  2. Go to TWRP โ†’ Wipe โ†’ Advanced Wipe (check Dalvik, Cache, Data).
  3. Set up the downloaded one. ZIP-file.

Frequent mistakes and their solutions

When you turn off the call record notification, users often encounter problems.

1. ADB-team is not working

Possible causes and solutions:

  • ๐Ÿ”Œ USB-Debugging not enabled: Check settings โ†’ For developers โ†’ Debugging by USB.
  • ๐Ÿ”ง Drivers not installed: Download Mi PC Suite or drivers for Poco X3 Pro.
  • ๐Ÿ“ฑ Firmware is blocking. ADB: On some versions MIUI (for example, 13.0.6+ for IN) Try adb shell settings list global to see if the command applies.

2. Notification is returned after update

This is because:

  • ๐Ÿ”„ MIUI Resets settings for major updates. Solution: Repeat steps after update.
  • ๐Ÿ“ System files are restored. If you edited Dialer.apk, After the update, it will have to be re-adjusted.

To avoid the problem:

  • ๐Ÿ”‡ Turn off automatic updates MIUI: Settings โ†’ The phone. โ†’ Updating the system โ†’ โ‹ฎ โ†’ Settings โ†’ Auto-update.
  • ๐Ÿ“ฅ Install updates manually by pre-checking reviews on forums (e.g, 4PDA).

3. the sound or network disappears after editing system files

If after changes in /system, the phone stopped ringing or catching the network:

  1. Restore the original files from the backup.
  2. Fastboot your phone (instruction: XDA).
  3. Check the file permissions (should be 644 for build.prop and 755 for folders).

FAQ: Answers to Frequent Questions

โ“ Can I turn off the notification without rooting and ADB?
Yes, but only on some versions of MIUI. Try: Go to Settings โ†’ Apps โ†’ Phone โ†’ Notifications and disable all options related to the record. Change the firmware region to Global or Russia (if you have IN/EEA). If these methods do not work, without ADB or root, you can not turn off the notification.
โ“ Will the call record work after the notification is turned off?
Yeah, the call record will work, but: ๐Ÿ“ฑ Built-in notebook MIUI may stop saving files (depending on the method of disabling). ๐Ÿ”Š Third-party apps (like Cube Call Recorder) record calls without notification. Check the recording after you apply changes!
โ“ Why After Updating MIUI notification returned?
Updates MIUI User preferences are often reset, especially if: ๐Ÿ”„ The firmware was updated through OTA (airborne). ๐Ÿ“ Modified system files (Dialer.apk, build.prop) was overwritten Solution: Repeat the steps to disable the notification or roll back to the previous version MIUI.
โ“ Can I turn off the notification only for specific contacts?
No, in MIUI Notification is either shown for all calls or not shown at all: ๐Ÿ“ž Use a third-party call with flexible settings (e.g. Truecaller). ๐Ÿ”• Record only the necessary conversations manually (record button during the call).
โ“ Is it legal to disable this notice?
From a legal perspective: โœ… Disabling the notification itself doesn't break the law if you don't record calls. โŒ Recording conversations without notifying the interlocutor may be a violation in some countries (for example, in the Russian Federation under Art. 138 of the Criminal Code.