How to permanently remove “Send an error report” on Xiaomi Redmi: working methods

The Send Error Report notification on Xiaomi Redmi smartphones appears when the MIUI system detects an app, driver or kernel malfunction. For most users, it's an annoying pop-up that prevents you from using the phone, especially if the error occurs cyclically. Unlike one-time notifications, this window locks the screen until you hit Cancel or Send.

The problem is complicated by the fact that in some versions MIUI (Especially 12-14) standard disabling of diagnostics in settings does not work – the system ignores user preferences and continues to show reports. In this article, we’ll break down 5 proven ways, including hidden developer settings, editing configuration files, and radical measures to fix the problem forever.The methods are suitable for all Redmi models (from Redmi Note). 4X Redmi 13 Pro, but the effectiveness depends on the firmware version and the extent of damage to system files.

Why does the Send Error Report window appear and can it be ignored?

Failure notification is part of the MIUI Feedback mechanism, which collects data to improve firmware. In theory, reporting helps Xiaomi fix bugs, but in practice users face two problems:

  • 🔄 Cyclic Errors: The same app (e.g. com.miui.home or com.android.systemui) falls over and over again, causing the user to constantly click Cancel».
  • 📱 Interface freeze: In severe cases, the report window blocks access to the phone for 10 to 30 seconds, which is critical when making calls or playing games.
  • 🔋 Battery discharge: Background reporting (if you click “Send”) consumes up to 5-10% of your charge per day.

You can ignore the problem, but only if the failures are of a single nature. If the window appears more than 1 time a day - this is a signal of serious problems:

  • 🛠️ Damaged system files (for example, after a failed update) MIUI).
  • 🧩 Application conflict (often to blame launchers, optimizers or root managers).
  • 🔄 Firmware incompatibility (if you have installed custom software or ported version) MIUI different model).

⚠️ Note: If an error occurs when the phone is booted (before the desktop appears), this may indicate a hardware failure (for example, damage to the eMMC memory.

📊 How often do you have a “Send Error Report” window"?
Once a week or less
1-2 times a day
Constantly, several times an hour.
I've never seen that before.

Method 1: Disabling the diagnosis in standard MIUI settings

The easiest method is to deactivate the collection of reports through the settings menu, which works on 60-70% of devices, but can be blocked by the manufacturer in some regional firmware (for example, MIUI Global for India).

Instructions:

  1. Open the Settings. → The phone.
  2. Tap 7 times on the MIUI version to activate the developer mode (you will be notified “You became a developer”).
  3. Return to the main settings menu and select Additional → For developers.
  4. Scroll down and turn off the option of Sending Error Reports (or Automatic Error Reporting in English).
  5. Reboot the phone.

If the Submit Reports item is not in the developer menu, try an alternative path:

  1. Settings → Applications → Application management.
  2. Click on the three dots in the top right corner and select Show All Apps.
  3. Find MIUI Feedback (or Feedback) and turn off the permissions to display on top of other windows.

⚠️ Attention: On some firmware (MIUI 13+ For the Redmi Note 11/12) After the diagnostics are disabled, the system can automatically turn it back on after the update.

Backup of important data|Verification of the version MIUI (Settings → The phone)|Activation of the developer mode|Disabling Automatic Updates (Settings) → Update of the PO)-->

Method 2: Block notifications via ADB (without root)

If standard settings don’t work, you can block the report window using Android Debug Bridge (ADB), a method that doesn’t require superuser rights, but requires connecting the phone to your computer.

Step-by-step:

  1. Download and install ADB Tools on PC.
  2. Turn on the phone debugging over USB (Settings → For developers).
  3. Connect Redmi to your computer and confirm the debugging permission.
  4. Open the command prompt (Windows) or terminal (macOS/Linux) in the folder with adb.exe.
  5. Enter the command to check the connection: Adb devices should appear serial number of your device.
  6. Follow the command to block reports: adb shell pm disable-user --user 0 com.miui.bugreport If it doesn't work, try an alternative: adb shell pm hide com.miui.bugreport
  7. Reboot the phone.

To get it back, use the command:

adb shell pm enable com.miui.bugreport
ADB Team TeamThe effectReversibility
pm disable-userDisable the application for the current userYes (pm enable team)
pm hideHide the application from the system (does not work on all firmware)Yes (pm unhide team)
pm uninstall -k --user 0Remove the application for the current user (without deleting data)Partially (requires APK reinstallation)

💡

If ADB doesn’t recognize the device, try reinstalling Xiaomi drivers via Mi PC Suite or manually through Windows Device Manager.

Method 3: Edit the build.prop file (root required)

For power users with superuser rights, there is a radical method - editing the system file build.prop. This will disable not only error reports, but also other diagnostic functions of MIUI.

Instructions:

  1. Install a file manager with root support (such as Root Explorer or Solid Explorer).
  2. Go to /system/build.prop.
  3. Make a backup copy of the file (copy it on the SD-map).
  4. Open build.prop in the text editor and add two lines at the end: ro.miui.feedback=false ro.miui.bugreport=false
  5. Save the file and restart the phone.

If the phone doesn’t boot after editing, restore the original build.prop via TWRP or reflash the device.

⚠️ Warning: Incorrect editing of build.prop can lead to loss IMEI, You can only use this method if you're confident of your actions.

What if the phone is not turned on after building.prop editing?
If Redmi is stuck on the logo MI After you change build.prop, follow the following steps: 1. Load into Restore Mode (Put Power on) + Volume Up). 2. Connect your phone to your PC and copy the build.prop backup backup back to /system/ through ADB: adb push build.prop_backup /system/build.prop 3. The right access rights are set: adb shell chmod 644 /system/build.prop 4. Reboot the device. If that doesn't work, you need to flash it over the Fastboot or EDL.

Method 4: Remove the MIUI Feedback (root) application

The most drastic way is to completely remove the system application responsible for reports, which is guaranteed to remove the Send Error Report window, but can disrupt other functions (for example, air updates or Xiaomi Cloud services).

How to delete:

  1. Install Titanium Backup or System App Remover (root required).
  2. Find the com.miui.bugreport (or MIUI Feedback) app list.
  3. Select the option to Delete (do not "Frozen"!).
  4. Confirm the action and restart the phone.

Alternative method through ADB (if root is available but no file managers are available):

adb shell


su




mount -o rw,remount /system




rm /system/priv-app/MiuiBugReport/MiuiBugReport.apk




rm /system/priv-app/MiuiBugReport/oat/*




reboot

AnnexThe path to APKEffects of removal
MIUI Feedback/system/priv-app/MiuiBugReport/Error reports are disabled, updates may be problematic
Analytics/system/priv-app/Analytics/Use statistics are no longer collected (may improve autonomy)
MSA (Miui System Ads)/system/priv-app/MSA/Advertising in system applications disappears, but push notifications may break

💡

Removing system applications is irreversible without flashing. If you have problems after removing MIUI Feedback (for example, updates do not work), restore the APK from a backup or flash the phone again.

Method 5: Reset to factory settings (last chance)

If none of the methods worked, and the Send Error Report window appears every 5-10 minutes, a hard reset remains, which will delete all data from the phone, but return the system to its original state, eliminating software failures.

How to drop Redmi:

  1. Back up important data (photos, contacts, SMS) through Settings → About Phone → Backup or Mi Cloud.
  2. Go to Settings → Additional → Recovery and Reset.
  3. Select Reset and confirm the action.
  4. Wait for the reboot (it will take 5-15 minutes).

If the phone does not respond to commands (hang on the logo or bootloop), reset via Restore mode:

  1. Turn off the phone.
  2. Press the Power button + Volume up until the Mi Recovery logo appears.
  3. Select Wipe Data → Wipe All Data (control – volume buttons, confirmation – power button).
  4. After reset, select Reboot.

⚠️ Note: Some models (Redmi Note 9 Pro, Redmi 10) may require re-assignment of the Mi Account after reset. If you forget your password, unlocking will take up to 72 hours (according to Xiaomi rules).

What to do if nothing helps: hardware causes

If the Send Error Report window appears even after a complete reset, the problem may be related to hardware malfunctions:

  • 💾 Memory damage to eMMC: common in phones older than 3-4 years (e.g. Redmi) 4X, Redmi 5: Symptoms - accidental reboots, brakes, read/write errors.
  • 🔌 Motherboard malfunction: often manifested after falls or moisture. Errors occur when charging or headphones are connected.
  • 🔋 Battery wear: If the battery is inflated, it can push the board, causing failures in the power controller.

Diagnosis:

  1. Check the memory status through the AIDA64 application (Memory section → Read/Write test). If the speed is below 50 MB/s, the eMMC is worn out.
  2. Check the battery for bloating (if the phone case is deformed, the battery needs to be replaced urgently).
  3. Connect your phone to your PC and check logs through adb logcat: adb logcat | grep -i "error\|If there are many records in the logs mmc_read_fail or ECC errors, which confirms a memory problem.

Decisions:

  • 🔧 Replacement of eMMC: cost – from 3 000 ₽ (On older Redmis (until 2018), the memory chip is often soldered to the board, making repairs more difficult.
  • 🔋 Battery replacement: price: 1,000–2,500 ₽. It is recommended to use the original Xiaomi batteries.
  • 📱 Replacement of motherboard: relevant for physical injuries, cost 50-70% of the price of a new phone.

💡

If the phone is warranty, do not open it yourself. Contact an authorized service center Xiaomi - repair warranty will cost free (provided that the failure is not caused by root rights or custom firmware).

FAQ: Frequent questions about Xiaomi error reports

Can I turn off error reports without root?
Yes, the first two methods help in 80% of cases: disabling the diagnosis in the settings or blocking through ADB. Root is only required to edit build.prop or remove system applications.
Why do you keep getting error reports after the MIUI update?
Firmware MIUI 12–14 Automatically resets some settings when you update, including diagnostic settings. After the update, check: Is reporting enabled again in Settings → For developers, has the app recovered? MIUI Feedback (if you have removed it) To avoid this, turn off automatic diagnostics via the ADB: adb shell settings put global bugreport_in_power_menu 0
Is it safe to remove MIUI Feedback?
Removing this app is not critical to the phone's performance, but could result in: Inability to send log files to support Xiaomi. OTA-Updates (manual firmware via Fastboot) Mi Cloud failures (if dependent services are removed with Feedback) We recommend freezing the application first (via Titanium Backup) rather than removing it completely.
How do I know which application is causing an error?
To identify problem software: Install Logcat Extreme or MatLog from Google Play. Run logs and wait for the error window to appear. Stop recording and search the logs for lines with ANR (Application Not Responding) or crash. See the name of the package (e.g. com.android.systemui) and find it in Settings → Apps. Typical culprits: com.mi.home — MIUI.com.android.systemui — System interface.com.com.pic.App.
What if a window appears on a locked screen?
If the error blocks unlocking your phone: Connect your phone to charge and wait until it unlocks automatically (some models will work Smart Lock).If you have a fingerprint, try unlocking your phone blind (swipe your finger through the scanner). In extreme cases, reset via Fastboot: fastboot erase userdata fastboot reboot Attention: this will delete all data!