How to Remove Google Play from Xiaomi Phone: Instructions for All Models

Removing Google Play from Xiaomi phones is a challenge that many users are concerned about: some want to get rid of unnecessary Google services to save battery life, some want complete privacy, and some just donโ€™t use the app store. However, on most Xiaomi models (especially with global firmware MIUI), Google Play is integrated into the system at the firmware level, making it a non-trivial task to remove it.

In this article, weโ€™ll look at all the ways you can go from simple disabling to complete removal with ADB and root rights, which Redmi, POCO or Mi models allow you to uninstall Google services without consequences, and where this can lead to failures, and weโ€™ll also analyze alternatives, such as using the Aurora Store or manually installing APK.

Before you start, consider that removing system applications is always risky. On some firmware, it can disrupt Google Play Services, which will cause errors in other applications (such as banking or instant messengers). If you are not sure, test the method first on a data backup.

๐Ÿ“Š Why do you want to delete Google Play?
Savings in battery charge
Confidentiality
I don't use the store.
Interfering with other applications
Another option

Why Google Play is Hard to Remove from Xiaomi

On Xiaomi smartphones with global MIUI firmware (e.g. Redmi Note 12, POCO X5, Mi 11), Google services are sewn into the system section /system/priv-app.

  • ๐Ÿ”น Normal removal through Settings โ†’ Applications are not available (the "Delete" button is inactive).
  • ๐Ÿ”น Even after disabling via adb, the app can recover after the update. MIUI.
  • ๐Ÿ”น On some models (e.g. Xiaomi) 13T Google Play is protected by dm-verity mechanism, which blocks changes to system files.

Google Play Services is closely integrated with MIUI, and its removal may result in:

  • ๐Ÿšจ Mistakes in synchronization of Xiaomi account.
  • ๐Ÿšจ Inoperability of push notifications in some applications.
  • ๐Ÿšจ Geolocation problems (if applications use Googleโ€™s FusedLocationProvider).

Another trap is regional firmware: Chinese versions of MIUI (without Google) don't require removal, but they don't support some languages and have service restrictions, and global and European firmware, by contrast, are tailored to the Google ecosystem.

๐Ÿ’ก

Before deleting, check if Google Play is used for login in games or banking applications.Some services (such as Google Pay or Genshin Impact) require an official store.

Method 1: Turn off Google Play without deleting (the safest)

If you just need to stop the background activity of the store, but not remove it completely, use the shutdown.This method works on all Xiaomi models (including Redmi Note 11, POCO F4, Mi 12 Lite) and does not require root rights.

Instructions:

  1. Open Settings โ†’ Applications โ†’ Application Management.
  2. In the search, type in the Google Play Store and select it.
  3. Click Disable (if the button is inactive, click Stop first).
  4. Confirm the action in the dialog window.

To completely disable background processes:

  1. Go to Settings โ†’ Accounts and Sync โ†’ Google.
  2. Turn off synchronization for all services.
  3. Return to App Management and disable Google Play Services and Google Services Framework.

โš ๏ธ Note: Google Play Services will stop working after shutdown:

  • ๐Ÿ“ Accurate location determination in maps.
  • ๐Ÿ”” Push notifications in some messengers (for example, Telegram or Viber).
  • ๐ŸŽฎ Authorization in games through Google Play Games.

Make a backup copy of the data|Check the list of apps that depend on Google|Disable two-factor authorization via Google Authenticator (if used)|Make sure there is an alternative app store on your phone (APKMirror, Aurora Store)-->

Method 2: Remove Google Play via ADB (without root)

If the shutdown isnโ€™t enough, you can uninstall Google Play using Android Debug Bridge (ADB).This method works on most Xiaomi models with the bootloader unlocked, but doesnโ€™t require root rights. Suitable for Redmi 10, POCO X3 Pro, Mi 11 Lite 5G and other devices on MIUI 12-14.

What you need:

  • ๐Ÿ–ฅ๏ธ Computer with installed ADB and Fastboot.
  • ๐Ÿ“ฑ Included debugging by USB on the phone (Settings) โ†’ The phone. โ†’ Version. MIUI โ€” Press 7 times, then Settings โ†’ Additionally. โ†’ For developers โ†’ Debugging by USB).
  • ๐Ÿ”Œ Cable USB (preferably original).

Step-by-step:

  1. Connect the phone to the PC and confirm the debugging permission.
  2. Open the command prompt (Windows) or terminal (Linux/macOS) in the adb folder.
  3. Enter the command to check the connection: Adb devices must display the serial number of your device.
  4. Run the command to delete Google Play Store: adb shell pm uninstall -k --user 0 com.android.vending
  5. To remove Google Play Services (optional but recommended for complete disabling): adb shell pm uninstall -k --user 0 com.google.android.gms

โš ๏ธ Note: Some firmware (e.g. HyperOS on Xiaomi 14) may not work because of system partition protection, requiring root or custom firmware.

After removal:

  • โœ… Google Play Store will disappear from the menu.
  • โœ… com.google.android.gms background processes will stop consuming battery.
  • โŒ Some apps (such as YouTube or Gmail) may stop updating.
What to do if ADB It's a mistake. [DELETE_FAILED_INTERNAL_ERROR]"
This error means that the application is protected from removal at the firmware level. Solutions: 1. Try first to disable the application via ADB: adb shell pm disable-user --user 0 com.android.vending 2. If it does not help, it requires unlocking the bootloader and installing custom recovery (TWRP), after which you can remove the APK manually. 3. On some models (for example, POCO F5), a rollback to an older version of MIUI, where protection is weaker, helps.

Method 3: Complete removal with root rights

If you're willing to go to drastic measures, you can get root rights and remove Google Play at the system file level. This method is suitable for power users and requires unlocking the bootloader. Works on all Xiaomi models, including the Redmi K60, POCO F4 GT, Xiaomi 13 Ultra.

โš ๏ธ Note: Getting root rights voids the warranty and may result in:

  • ๐Ÿ” Block some banking applications (due to SafetyNet trigger).
  • ๐Ÿ“ต Problems with OTA-Updates (you will need to update manually).
  • ๐Ÿ› ๏ธ Unstable work MIUI (If you incorrectly change system files).

Instructions:

  1. Unlock the bootloader through Mi Unlock Tool (requires a Xiaomi account binding and a wait of 7-15 days).
  2. Install custom recovery TWRP for your model (see instructions on XDA Developers).
  3. Use Magisk to get root rights: fastboot flash boot magisk_patched.img
  4. Download to TWRP and delete the following files: /system/priv-app/PrebuiltGmsCore/ /system/priv-app/Phonesky/ /system/app/GmsCore/
  5. Clean the cache and dalvik-cache in TWRP, then restart.

After removal:

  • ๐Ÿ“Œ Google Play and related services will be removed without recovery through standard means.
  • ๐Ÿ“Œ To install applications, you will need to use alternative stores (for example, Aurora Store or F-Droid).
  • ๐Ÿ“Œ Certain functions MIUI (For example, cloud backups may stop working.

Alternatives to Google Play on Xiaomi

If you have removed Google Play but still need to install apps, consider the following alternatives:

ShopAdvantagesDeficienciesReference
Aurora Storeโœ… Anonymous access to Google Playโœ… Open source codeโœ… Support for updatesโŒ There are no proprietary apps (Netflix, Disney)+)auroraoss.com
APKMirrorโœ… Officially APK modificationlessโœ… History of application versionsโŒ No automatic updatesโŒ Risk of downloading an outdated versionapkmirror.com
F-Droidโœ… Open source only.โœ… No tracking.โŒ Very limited choice of applicationsf-droid.org
APKPureโœ… Large application baseโœ… Support for regional versionsโŒ Malware risk (check hashes of files)apkpure.com

To install applications from these sources:

  1. Download. APK-phone-file.
  2. Allow installation from unknown sources in Settings โ†’ Applications โ†’ Special Rights โ†’ Installation of unknown applications.
  3. Open the file through any file manager (e.g. Mi File Manager).

โš ๏ธ Attention: When installed APK manually:

  • ๐Ÿ›ก๏ธ Always check the hash of the file (for example, through Hash Droid).
  • ๐Ÿ”„ Updates will have to be installed independently.
  • ๐Ÿšซ Avoid "modified" ones" APK (For example, from sites like BlackMod or RevDL, they may contain malicious code.

Restore Google Play after Deletion

If you change your mind or have problems after deleting, you can restore Google Play in several ways:

  • ๐Ÿ”„ Through MIUI Recovery: Reset your phone to factory settings (Settings) โ†’ The phone. โ†’ Resetting. This will bring back all system applications, but delete your data.
  • ๐Ÿ“ฅ Hand-mounted APK: Download the latest versions of com.android.vending and com.google.android.gms from APKMirror and install them manually.
  • ๐Ÿ”ง Through ADB: If the application has been disabled rather than removed, do: adb shell pm enable com.android.vending adb shell pm install-existing com.android.vending
  • ๐Ÿ“ฆ Fastboot Firmware: For a full recovery, run the original firmware MIUI via Mi Flash Tool (instructions at xiaomiflash.com).

If Google Play is not working after recovery:

  • ๐Ÿ”„ Reboot the phone.
  • ๐Ÿ“ถ Check your internet connection (Google Play requires a stable connection for first sync).
  • ๐Ÿ”ง Clear the cache and application data in Settings โ†’ Annexes โ†’ Google Play Store โ†’ Warehouse.

Xiaomi models where Google Play removal could cause problems

On some Xiaomi devices, deleting Google Play leads to critical crashes. Here is a list of high-risk models:

ModelProblem after removalRecommendation
Xiaomi 13T / 13T ProBootloop (MIUI) error due to dm-verity protectionUse only the ADB shutdown.
POCO F5 / F5 ProThe camera and sensors are not working (dependence on Google Camera Services).Remove only the Google Play Store, not Google Play Services.
Redmi Note 12 Pro+Mobile network problems (not registered on 5G network)Before deleting, disable automatic network definition in Settings โ†’ SIM-maps and mobile networks.
Xiaomi Pad 6Some MIUI gestures (such as swipe for return) do not work.Use alternative launchers (like Nova Launcher).

On these models, it is better to limit yourself to disabling instead of completely removing. If it is critical to get rid of Google, consider switching to custom firmware without GApps (for example, LineageOS or Pixel Experience).

๐Ÿ’ก

On HyperOS devices (such as Xiaomi 14 or Redmi K70), deleting Google Play almost always causes crashes, and itโ€™s better to use the method of disabling or installing an alternative store on top of the standard one.

FAQ: Frequent questions about removing Google Play from Xiaomi

Can I delete Google Play without a computer?
On most Xiaomi models, it is not. ADB or root, which cannot be done from your phone alone. However, you can turn off Google Play through settings (Settings) โ†’ Annexes โ†’ Google Play Store โ†’ Exception: devices with unlocked loader and installed TWRP. In this case, it can be removed. APK-Manually use a root-access file manager (e.g., Root Explorer).
Will YouTube work after Google Play is removed?
YouTube depends on Google Play Services, but not on the Google Play Store itself. If you delete only the store, YouTube will continue to work. If you delete com.google.android.gms, YouTube will stop updating and may give errors when you log in. Solution: use the web version of YouTube through your browser or install a modified APK (for example, YouTube Vanced or ReVanced).
How to remove Google Play from Xiaomi with HyperOS?
On HyperOS (e.g. Xiaomi) 14, Redmi K70) standard methods of removal through ADB Often not working due to enhanced system partition protection.Options: Use disabling via adb shell pm disable-user --user 0 com.android.vending. Install custom recovery (TWRP) and remove APK manually (requires unlocking the bootloader). Go to custom firmware without GApps (e.g. LineageOS). โš ๏ธ On HyperOS, removing Google Play Services (com.google.android.gms) almost always causes a crash. MIUI.
Can I remove Google Play on the Chinese version of Xiaomi?
On Chinese firmware. MIUI (For example, Xiaomi 13 or Redmi K60 Google Play is not available in China, but instead uses the Mi App Store and other local services. If you have installed Google Play on Chinese firmware (via Google Installer), you can remove it as a regular user application: Go to Settings โ†’ Annexes โ†’ App management.Look for Google Play Store and click Delete (button will be active). โš ๏ธ Please note that once removed, you will not be able to install apps that depend on Google (such as Gmail or Google Maps).
How to check if Google Play is completely removed?
To make sure that Google Play is removed without residues, follow the following steps: Check the list of apps in Settings โ†’ Apps โ€” there should not be a Google Play Store. Open the terminal (for example, via Termux) and execute the command: pm list packages | grep 'vending' If the output is empty, the application is deleted. Check background processes via adb shell ps -A | grep google - there should be no com.android.vending processes. APK manually โ€“ if an error occurs during installation about a conflict with an existing package, then traces of the application remain.