How to completely remove Google bell on Xiaomi: disabling and uninstallation

Xiaomi smartphone owners often encounter duplicate calling apps: the standard MIUI โ€œCallerโ€ and the Google Phone imposed (aka โ€œGoogle Callerโ€). The latter not only takes up space in memory, but can also conflict with system calls, show missed calls notifications twice or even reset default settings. In this article, we will discuss all the current ways to remove or disable the com.google.android.dialer application โ€“ from simple methods without superuser rights to radical solutions using ADB and root.

It is important to understand that on some Xiaomi models (e.g. Redmi Note 12 Pro+ or Poco F5) Google Phone is integrated into Google Play services and cannot be removed completely without consequences for system stability. However, even in such cases it can be deactivated or hidden. We tested all methods on MIUI 14.0.5 and 15.0.2 (Android 13/14) - the results are summarized in the comparison table below.

Why Google Caller Appears on Xiaomi

The Google Phone app is installed on Xiaomi smartphones for two main reasons:

  • ๐Ÿ“ฆ Pre-installation in firmware MIUI Global or EEA (The manufacturer enters into agreements with Google to include their services by default.
  • ๐Ÿ”„ Automatic recovery after resetting or system updates. Even if you have removed the app before, it can return via the Google Play Store as a "systemยป.
  • ๐Ÿ“ฑ Transferring data from another Android device where Google Phone was the default app for calls.

On the Chinese versions of MIUI (without Google services), this problem is not โ€” it only uses a standard call from Xiaomi. But on global firmware, the application is not just deadweight: it can intercept outgoing calls, show its notifications and even block the operation of a standard call after updates.

๐Ÿ“Š What phone call do you use on Xiaomi?
Only standard MIUI.
Google Phone
Both in turn.
Other appendix

Method 1: Disconnect via Android Settings (without root)

The safest method is to deactivate the application without deleting it, which won't free up memory, but will stop background activity and remove the icon from the menu.

  1. Open Settings โ†’ Applications โ†’ Application Management.
  2. In the search box, enter Phone or Phone (in Russian).
  3. Select Google Phone (the icon with the green phone and Google logo).
  4. Click Disable (if the button is inactive, click Stop first).
  5. Confirm the action in the dialog window.

โš ๏ธ Note: On some models (Xiaomi 13 Ultra, Redmi) K60 Pro) after disconnection, you may not be able to call through Google Assistant (voice commands "Call Mom"). If you use this feature, you better choose another way to call.

โ˜‘๏ธ Preparing for the Google Phone Shutdown

Done: 0 / 4

Method 2: Remove updates and reset to factory version

If Google Phone was pre-installed but Later was updated through the Play Store, you can return it to the original version and then disable it.

  1. Go to Settings. โ†’ Annexes โ†’ Google Phone โ†’ Three points (โ‹ฎ) โ†’ Remove updates.
  2. Confirm action. The app will return to the factory version (usually v75.xx instead of the current v95.xx).
  3. Return to the app menu and click Disable.
  4. Block Automatic Update: Open Google Play Store. Find Google Phone. Click on the three dots next to Update and uncheck Auto Update.
MethodRoot is required.Frees up memory.Removing the iconRisk to the system
Disconnection in settingsโŒ No.โŒ No.โœ… Yes.โŒ No.
Removing updates + disablingโŒ No.โœ… Partially (~50MB)โœ… Yes.โŒ No.
ADB-team pm uninstall -kโŒ No.โœ… Yes (~150 MB)โœ… Yes.โš ๏ธ Medium.
Removal through root conductorโœ… Yes.โœ… Completely (~200 MB)โœ… Yes.โš ๏ธโš ๏ธ High-pitched

Method 3: Remove via ADB (without root but with PC)

This method will require a computer with ADB drivers installed and enabled USB debugging on your smartphone, running on MIUI 12-15 and allowing you to completely remove Google Phone without superuser rights.

  1. Activate Developer Mode: Go to Settings โ†’ About Phone. Click 7 times on MIUI Version. Go back to Settings โ†’ Additional โ†’ Developer. Enable USB Debugging.

Connect your smartphone to your PC and confirm your trusted device.

adb devices

Make sure your Xiaomi is listed.

adb shell pm uninstall -k --user 0 com.google.android.dialer

If there is a mistake DELETE_FAILED_DEVICE_POLICY_MANAGER, Use an alternative command:

adb shell pm hide com.google.android.dialer

Reboot your smartphone.

โš ๏ธ Attention: On some firmware (MIUI 14 for Poco F4 GT) After this method, the possibility of updating through OTA. Before using, create a backup copy in Settings โ†’ Memory. โ†’ Backup.

๐Ÿ’ก

If the command doesnโ€™t work, try first disabling Google Phone in the settings, then repeat. ADB-This increases the chances of successful removal.

Method 4: Complete removal with root rights

For users with an unlocked bootloader and Magisk or other root solution installed, physical deletion of application files is available, a method that frees up maximum memory and is guaranteed to remove Google Phone forever.

  1. Install any root conductor (e.g. Root Explorer or Mixplorer with Magisk module).
  2. Go to /system/priv-app/PrebuiltGmsCorePiX/ or (for newer versions of MIUI): /system/product/priv-app/Dialer/
  3. Delete folders: com.google.android.dialer Dialer (if any)

Settings โ†’ Apps โ†’ Google Phone

Reset the device.

๐Ÿ”ง If Google Assistant functions for calls are lost after deletion, restore the file com.google.android.googlequicksearchbox.apk From backup or reinstall Google App through the Play Store.

What if calls stopped working after the deletion?
If all the functions of the calls (including the standard call) have been lost after manipulation with Google Phone, then the critical system component has been removed, restore it through the firmware in Fastboot mode or return the backup via TWRP.

Method 5: Hiding icons and resetting the application by default

If you canโ€™t delete Google Phone, but it only interferes visually (for example, duplicates the icon in the menu), you can hide it and reassign the default application for calls.

  • ๐Ÿ“ฑ Hiding the icon: Hold your finger on the Google Phone icon on the home screen. Drag it up to Remove (on some launchers - Hide). โ†’ Main screen screen โ†’ Hide applications.
  • ๐Ÿ”„ Reset the application by default: Open Settings โ†’ Annexes โ†’ Default management. Select the Caller. Click Clear the default settings. Next time you call, the system will tell you to select the app -- select the application. MIUI Call and check the box Always.

โš ๏ธ Attention: MIUI 15 After resetting the default settings, a notification may appear โ€œNo Calling App.โ€ In this case, restart the device or manually run a standard call through an application search.

What to do if Google Phone is back after the update

Even after successful removal, the app may recover after updating the Google Play Services or system to prevent this:

  1. ๐Ÿ›ก๏ธ Freeze the application through ADB: adb shell pm disable-user --user 0 com.google.android.dialer This command blocks automatic recovery.
  2. ๐Ÿ“ต Turn off auto-update in the Play Store (see Method 2).
  3. ๐Ÿ”ง Use the Magisk module: Install the Universal module GMS Doze or DisableFlags. Activate the option to block the recovery of remote applications.

LineageOS

Pixel Experience

Google

.

๐Ÿ’ก Tip: If you often encounter a return of Google Phone, create a tasker task that will automatically disable the application after each system update. To do this, add the Run Shell action with the command from paragraph 1 to Tasker.

๐Ÿ’ก

The most reliable way to prevent the return of Google Phone โ€“ a combination ADB-teams to freeze and disable auto updates in the Play Store.

FAQ: Frequent questions about removing Google Phone on Xiaomi

Can I delete Google Phone without a computer?
Without a PC, you can only disable the application (see Method 1) or remove its updates (see Method 2). Complete removal without ADB or root is impossible, as it is a system application.
Why did all the contacts disappear after the removal?
Google Phone doesn't store contacts -- they're synced through com.android.contacts. If contacts are gone, check if Settings are synced to Settings โ†’ Accounts โ†’ Google โ†’ Contact Sync. Have you accidentally deleted the Contacts app (com.android.contacts). Have you logged into a standard MIUI call - sometimes contacts are only displayed there. Contacts can be restored through Google Contacts in the browser (contacts.google.com).
Will Google Assistant work after you delete your call?
Partially. Voice commands like Call Mom will stop working, but other functions (Ok Google, smart home management, Internet search) will stay. If you care about assistant calls, instead of deleting, just turn off Google Phone (see Method 1).
Can I remove Google Phone from Xiaomi with TWRP?
Yeah, but it's risky. TWRP You can manually delete application files from the section /system, but: โš ๏ธ This can lead to bootloop ( looped download) if you remove the associated libraries. ๐Ÿ”ง Make it safer to use Magisk and modules like System App Remover. ๐Ÿ“Œ Before manipulation, make a full backup through TWRP โ†’ Backup.
Are there any alternative calls for Xiaomi?
If you are not satisfied with a standard call MIUI, Google Phone, try third-party apps: ๐Ÿ“ž Truecaller โ€“ with spam identification and call recording. ๐Ÿ”’ Simple Dialer โ€“ Minimalist Call without Advertising. ๐ŸŽจ Drupe โ€“ with customization of the interface and gestures. ๐Ÿ“Š ExDialer - with support T9-Before installation, disable both standard calls to avoid conflict.