Synchronizing contacts through Google Account on Xiaomi Redmi smartphones often becomes a source of problems: duplicate records, conflicts with Mi Account, or simply the desire of the user to store contacts locally. Unlike the standard removal of the application, Google Contacts are integrated into Android system services, so their complete removal requires a comprehensive approach โ from disabling synchronization to deep settings MIUI or even working with ADB.
In this article, we will analyze all possible methods - from basic (available to beginners) to advanced (for those who are ready to work with development tools). MIUI 12/13/14, So if you want to not just hide your contacts, but completely remove their traces from the system, read on.
Why Google Contacts Appear on Redmi Automatically
Xiaomi Redmi smartphones (like other MIUI devices) are bound by default to two ecosystems:
- ๐ Google Services โ automatically sync contacts, calendar and email when you add an account @gmail.com.
- ๐ฑ Mi Account is Xiaomiโs own ecosystem that also stores a copy of contacts in the cloud.
- ๐ค Sync Conflict โ If you have previously used Google Contacts on another device, they will automatically pull up to Redmi when you log in to your account.
The main problem is that MIUI does not provide a direct option to โdelete Google Contacts forever,โ and even after you turn off sync in your account settings, the system can restore them after you reboot or update them, which is due to the work of Google Contacts Sync Adapter, which is sewn into the firmware.
Method 1: Disable Google Contacts Sync (without deleting your account)
The easiest and safest method is to disable contact sync while still retaining access to other Google services (Play Market, Gmail, etc.), which is suitable if you need to temporarily hide contacts or stop automatically updating them.
- Open Settings โ Accounts and Sync (on MIUI 14, the path may be called Memory and Sync โ Accounts).
- Select your Google Account (usually displayed as @gmail.com).
- Slip to the account synchronization point.
- Find the Contact Switch and turn it off.
- Confirm the action by clicking Ready or Save.
After that, existing contacts will remain on the phone, but new changes will not sync with Google.To delete already uploaded contacts, go to the Contacts app, click on three dots (โฎ) โ Contact management โ Select Google and remove unnecessary entries manually.
๐ก
If contacts continue to appear after you turn off sync, check the Contacts app settings (Contact Display section), and it may include all accounts, including hidden ones.
Method 2: Delete Google Account from your device (radical method)
If you donโt need any Google services (or are ready to create a new account), you can delete your Google Account completely from your phone.
- โ Remove all synchronized contacts, calendars and mail.
- โ ๏ธ Loss of access to Play Market, Gmail, YouTube and other services under this account.
- ๐ Re-add your account (but contacts will not automatically be restored).
Instructions:
- Go to Settings โ Accounts and Synchronization.
- Select your Google Account.
- Press three points (โฎ) top-right โ Delete the account.
- Confirm the deletion (a password or pattern lock may be required).
โ ๏ธ Note: Some Redmi models (e.g. Redmi Note 10 Pro or Redmi) 9T) After deleting Google Account, factory protection can work FRP (Factory Reset Protection: If you forget your account details, it will be impossible to unlock your phone after a reset!
Method 3: Reset the Contacts app settings (for MIUI)
In MIUI, the Contacts app has its own cache and data settings that can be reset without losing other phone features.This will help if contacts are duplicated or displayed incorrectly.
How to reset:
- Open Settings โ Applications โ Application Management.
- Find the Contacts app (or Contacts on English firmware).
- Slip it on the Warehouse.
- Click Clear Data and Clear Cache.
- Reboot the phone.
Once reset, the Contacts app will restart with clean settings, and you will need to re-select which accounts to display (Google, Mi Account or Google Account). SIM-This method does not delete the contacts themselves, but only resets the settings for displaying them.
Export important contacts to the file VCF|Remember which accounts were connected.|Check if there are any contacts on SIM-map|Make a backup copy through MI Cloud (optional)-->
Method 4: Using ADB to remove Google Contacts Sync (for advanced)
If you're ready to work with Android Debug Bridge (ADB), you can disable the system app responsible for syncing contacts. This method requires an unlocked bootloader and enabled debugging over USB, but gives the most complete removal of Google Contacts without root rights.
Step-by-step:
- Turn on Developer Mode: Go to Settings โ About Phone. Tap 7 times on MIUI Version. Go back to Settings โ Additional โ Developer. Activate USB Debugging.
adb shell pm uninstall -k --user 0 com.google.android.syncadapters.contacts
adb shell pm disable-user --user 0 com.google.android.syncadapters.contactsReset the device.
These commands disable system-level contact sync, but don't delete the Google Contacts app itself. To get it back, use:
adb shell pm install-existing --user 0 com.google.android.syncadapters.contacts
adb shell pm enable --user 0 com.google.android.syncadapters.contactsโ ๏ธ Attention: Misuse of the right ADB This can cause system applications to fail or reboot cycles.Before experimenting, back up using Mi. PC suite TWRP (if established).
What if the ADB canโt see the device?
Method 5: Manual removal via TWRP (for root users)
If your Redmi has custom TWRP recaps installed and root access, you can manually delete files associated with Google Contacts, a method that is suitable for advanced users, as it requires working with system partitions.
Instructions:
- Boot to TWRP (hold Power + Volume up when turned on).
- Connect your phone to your PC and mount the /system partition.
- Delete the following files (using ADB or file manager in TWRP): /system/priv-app/GoogleContactsSyncAdapter/ /system/app/GoogleContacts/ /data/data/com.google.android.syncadapters.contacts/
- Clear the cache and Dalvik-cache in TWRP.
- Reboot.
If the problem persists, you may have modified firmware installed on your device (e.g., Global ROM with Google services preinstalled), in which case only flashing to China ROM (without GMS) or installing custom firmware like LineageOS will help.
๐ก
On devices with MIUI for Russia (EEA) Google Contacts are stitched deeper than the Chinese versions. If you bought Redmi from an official store, you'll likely need to use it. ADB-commands or root access for complete removal.