How to completely disable Google apps on Xiaomi: 5 proven ways

Xiaomi MIUI-based smartphones come pre-installed with a suite of Google services, from the Play Store to Google Play Services, which consume device resources, collect data and sometimes interfere with work. Many users want to get rid of them for reasons of privacy, battery saving or simply because of their hatred of โ€œGoogle.โ€ But there are pitfalls: incorrect removal of system applications can lead to MIUI malfunctions, loss of functionality (such as push notifications), or even a โ€œbrickโ€ of the device.

In this guide, weโ€™ll look at all the possible ways from secure deactivation through settings to radical removal with ADB and custom firmware, which apps can be removed without risk and which shouldnโ€™t be touched, even if they seem useless, and weโ€™ll analyze the consequences of each method and offer alternatives for those who want to keep the functionality of the smartphone.

Important: The instructions are current for MIUI 12-15 (including HyperOS), but may differ on older versions or devices with modified software. Before starting, we recommend backing up data via Settings โ†’ About Phone โ†’ Backup.

๐Ÿ“Š Why you want to disable Google apps on Xiaomi?
Save the battery.
Concern for confidentiality
They take up a lot of space.
Interfering with other applications
Another option

1.What Google apps are installed on Xiaomi by default?

On Xiaomi smartphones with Google services (so-called) GMS-device) a standard set of applications preinstalled, which can be divided into three categories:

  • ๐Ÿ“ฆ Critical: Google Play Services, Google Services Framework, Google Play Store. Without them, push notifications, Google authorization, many apps from the Play Store will not work.
  • ๐Ÿ”„ Useful but not mandatory: Google Chrome, YouTube, Gmail, Google Maps. These can be replaced by alternatives (e.g. Bromite instead of Chrome).
  • ๐Ÿ—‘๏ธ Ballast: Google One, Google Podcasts, Google TV, Duo.These apps are almost never used and safely removed.

The full list can be found in the Settings menu โ†’ Apps โ†’ Application Management by sorting them by System. Note: some applications (such as Google Play Services) may be duplicated โ€“ this is normal, since they are responsible for different functions.

AnnexCan I remove it?Effects of removalThe alternative
Google Play ServicesโŒ No.Failure of push notifications, errors in applications, inability to log in through GoogleTurn off auto-update
Google Play Storeโš ๏ธ Partially.It is impossible to install / update applications through the Play StoreAurora Store, APKMirror
Google Chromeโœ… Yes.Loss of synchronization of bookmarks and history (if you used a Google account)Bromite, Firefox, Kiwi Browser
YouTubeโœ… Yes.No access to an official client (but you can use YouTube Vanced or NewPipe)NewPipe, Vanced (unofficial)
Google Oneโœ… Yes.Loss of access to Google Cloud Storage (if used)Other Clouds (Mega, Proton Drive)

โš ๏ธ Note: Some Xiaomi models (e.g. Redmi Note 10 Pro) POCO X3 Pro) Google Extensions is responsible for weather widgets and other system functions, and its removal may cause malfunctions. MIUI.

Method 1: Deactivation through settings (without root)

The safest method is to disable unnecessary applications without completely removing them, which will not free up disk space, but will stop background activity and save battery life.

  1. Open Settings โ†’ Applications โ†’ Application Management.
  2. Click on the three dots in the upper right corner and select "Show System Processes".
  3. Find the app you want (like Google One) and tap it.
  4. Click "Disable" (if the button is inactive - the application is critical to the system).
  5. Confirm the action in the window that appears.

Once disabled, the app will disappear from the menu, but will remain on the system, and it can be activated again through the same settings, a method that works for most ballast applications, but will not help get rid of Google Play Services or the Google Services Framework.

Disable Google One (Cloud Storage)

Turn off Google Podcasts (if you donโ€™t use podcasts)

Turn off Google TV (alternatively SmartTubeNext)

Disable Duo (replaced with WhatsApp or Telegram calls)

Turn off Google Play Games (if you don't play mobile games)-->

If the "Disable" button is not available, try removing the updates for the app first (the "Remove Updates" button in the same menu).

Method 2: Removal via ADB (without root but with PC)

For a deeper cleaning, you can use Android Debug Bridge (ADB), a tool for debugging Android devices, which allows you to completely remove unnecessary applications, but requires a connection to your computer and turn on the developer mode.

Advantages of the method:

  • โœ… Doesn't require root rights.
  • โœ… Remove applications permanently (before resetting to factory settings).
  • โœ… It works on most Xiaomi models (including the ones that are used by Xiaomi). POCO redmi).

Disadvantages:

  • โš ๏ธ A team error can cause a system failure.
  • โš ๏ธ Some applications after removal can recover after updating MIUI.

Step-by-step:

  1. Turn on Developer Mode: Go to Settings โ†’ About Phone. Tap 7 times on MIUI Version. Go back to Settings โ†’ Additional โ†’ For Developers. Activate USB Debugging.
  2. Install ADB on your PC: Download Googleโ€™s Platform Tools. Unpack the archive into any folder (e.g., C:\adb).

Connect your smartphone to your PC

adb devices

(Your device should appear)

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

(Replace com.google.android.apps.photos with the package of the desired application).

List of packages of popular Google applications:

  • ๐Ÿ“ท Google Photo: com.google.android.apps.photos
  • ๐ŸŽต YouTube Music: com.google.android.apps.youtube.music
  • ๐Ÿ“บ Google TV: com.google.android.videos
  • ๐Ÿ“ž Google Duo: com.google.android.apps.tachyon
  • ๐Ÿ“ง Gmail: com.google.android.gm

โš ๏ธ Note: Do not delete com.google.android.gms (Google Play Services) and com.android.vending (Play Store) via ADB โ€” This will cause most applications, including banking, to fail!

adb shell pm list packages -f > apps_backup.txt

This will help restore remote programs if something goes wrong.-->

Method 3: Using Magisk and the Universal GMS Doze

If you have root rights (installed by Magisk), you can go further and not only remove unnecessary apps, but also limit the activity of those that remain. One of the best tools for this is the Universal GMS Doze module, which:

  • ๐Ÿ›ก๏ธ Blocks background activity of Google Play Services.
  • ๐Ÿ”‹ Significantly saves battery power.
  • ๐Ÿ“ก Reduces the consumption of mobile traffic.

Installation instructions:

  1. Install Magisk (if not already installed).
  2. Download the Universal GMS Doze (.zip file).
  3. Open Magisk, go to the Modules section and click "Install from storage".
  4. Select the downloaded file and confirm the installation.
  5. Reset the device.

Once installed, the module will automatically limit Google services activity. You can change the settings in /sdcard/UniversalGMSDoze/config.txt (created after the first reboot). For example, to completely disable Google Play Services, add a line:

PACKAGE=com.google.android.gms


DISABLE=1

โš ๏ธ Attention: On some firmware MIUI The module can conflict with system services, causing freezes. If after installation, the smartphone begins to brake, disconnect the module through Magisk and try the alternative - DisableService.

What if push notifications stopped coming after installing the module?
This is normal behavior, as Google Play Services is responsible for delivering notifications. To return them, edit the config.txt file of the module, adding an exception: PACKAGE=com.google.android.gms DISABLE=0 DOZE=1 This will disable deep hibernation for Google services, but will retain a moderate limitation of background activity.

5. Method 4: Install custom firmware without GMS

The most radical way to get rid of Google apps is to install custom firmware without Google services (called GMS-free builds).

  • ๐Ÿ“ฑ LineageOS (official and unofficial builds).
  • ๐Ÿ”„ Pixel Experience (no versions available) GMS).
  • ๐Ÿ›ก๏ธ CalyxOS or GrapheneOS (focus on privacy).
  • ๐Ÿ‡จ๐Ÿ‡ณ MIUI China (official firmware without official firmware) GMS, but with Chinese services).

The installation process shall include:

  1. Unlock the bootloader (fastboot oem unlock).
  2. Installation of custom recavery (TWRP or OrangeFox).
  3. Formatting partitions and installing firmware.

Advantages:

  • โœ… Full control of the system.
  • โœ… No Google services out of the box".
  • โœ… Option to choose alternative app stores (F-Droid, Aurora Store).

Disadvantages:

  • โš ๏ธ Loss of warranty if the device is new).
  • โš ๏ธ Risk of โ€œbrickingโ€ in case of error.
  • โš ๏ธ Some features (like Google Pay) wonโ€™t work.

FirmwareSupport for GMSAlternative storeComplexity of installation
LineageOSโŒ No (can be further established)F-Droid, Aurora StoreMedium
Pixel Experience (GMS-free)โŒ No.Aurora StoreMedium
CalyxOSโŒ No (replaced with microG)F-Droid, Aurora StoreTall.
MIUI ChinaโŒ No (Chinese services)No (must be manually installed)Low.

โš ๏ธ Note: Some Xiaomi models (e.g. Redmi Note 9 Pro) POCO F3) Installation of custom firmware can lead to problems with the Widevine module L1, This will stop streaming services in high resolution (for example, Netflix in the Internet). HD).

Method 5: Use of alternative services (without deletion)

If you don't want to risk the stability of the system, but at the same time reduce the impact of Google, you can replace standard applications with open source alternatives or from other developers.

  • ๐ŸŒ Browser: Bromite (Chrome with tracker locking), Firefox Focus (private default mode). DuckDuckGo Browser (built-in tracking lock).
  • ๐Ÿ“ง Mail: FairEmail (open source, support) PGP). K-9 Mail (classic client with encryption).
  • ๐Ÿ—บ๏ธ Maps: OsmAnd (OpenStreetMap-based offline maps) Magic Earth (an alternative to Google Maps).
  • ๐ŸŽต Music/Video: NewPipe (YouTube without advertising and tracking). VLC (versatile player).

The advantage of this approach is that you don't have to delete or modify anything, but you just need to install alternative apps and disable notifications from Google apps (in the settings of each application).

  1. Go to Settings โ†’ Apps โ†’ Google Play Services.
  2. Select "Notifications" and disable all permissions.
  3. In the "Battery" section, set "Limited" mode of operation.

This will not shut down services completely, but will significantly reduce their activity.

๐Ÿ’ก

Replacing Google apps with alternatives is the safest way to reduce Googleโ€™s impact without risk to the system, a method that is suitable for users who do not want to lose warranty or engage in complex manipulation.

7. Risks and consequences of disabling Google applications

Before you remove or deactivate Google services, itโ€™s important to understand the consequences, which depend on which apps you touch and how much your smartphone depends on the Google ecosystem.

What breaks most often:

  • ๐Ÿ“ฑ Push notifications: without Google Play Services, notifications from instant messengers, social networks and emails will stop working (if they use Firebase Cloud Messaging).
  • ๐Ÿ”‘ Authorization: You cannot log in to your Google account in other apps (such as Gmail or YouTube).
  • ๐ŸŽฎ Games: Many mobile games (especially online) require Google Play Games to keep progress.
  • ๐Ÿ’ณ Banking apps: Some banks (like Sberbank or Tinkoff) check for Google Play Services for security.
  • ๐Ÿ“ก Geolocation: without Google Play Services, geolocation services (for example, Yandex.Maps or Google Play Services) may not work well. 2GIS).

How to minimize the risks:

  • ๐Ÿ”„ Use microG, an open-source implementation of Google services that emulates their work without tracking, installed via Magisk or as part of firmware like LineageOS for microG.
  • ๐Ÿ“ฒ For push notifications, configure UnifiedPush (protocol for decentralized notifications, supported by Signal, Telegram) FOSS and other applications).
  • ๐Ÿ”‹ Before deleting, check which apps are dependent on Google using the App Inspector tool (available in F-Droid).

โš ๏ธ Attention: On devices with MIUI Deleting Google Play Services may cause theme and weather widgets to fail, as they are partly dependent on Googleโ€™s web designs. API. If the weather on the home screen is gone after removal, return services or install an alternative launcher (for example, Nova Launcher).

FAQ: Frequent questions

Can I turn off Google Play Services without consequences?
No, completely disabling or deleting Google Play Services will cause most applications, including banking, instant messengers and games, to fail, but you can limit its activity using the Universal GMS Doze Magisk module or disable auto-update in the application settings.
Why do Google apps come back after they are removed from ADB after the MIUI update?
This is because MIUI restores system applications when it updates, and to avoid that, you can: Turn off automatic MIUI updates in settings; use the Systemless Hosts Magisk module or DisableService to block recovery; install custom firmware without GMS.
How to check which apps depend on Google Play Services?
Install App Inspector from F-Droid: Open App Inspector and select Apps. Find the app you want (e.g. Sberbank Online). Check Dependencies or Services - if you have com.google.android.gms, the app depends on Google Play Services. Alternatively, use ADB: adb shell dumpsys package com.example. (replace com.example.app with the app package being tested).
What if the banking software stopped working after Google removed the apps?
Banking applications (e.g. Sberbank or Tinkoff) often check for Google Play Services and SafetyNet certificates: ๐Ÿ”„ Restore Google Play Services through ADB: adb shell cmd package install-existing com.google.android.gms ๐Ÿ›ก๏ธ Install Magisk and activate Universal SafetyNet Fix to pass SafetyNet. ๐Ÿ“ฑ Use the web version of the bank through a browser with Desktop Mode support (for example, Kiwi Browser).
Can I turn off Google on Xiaomi without a computer?
Yes, but with limitations: โœ… Deactivation: through Settings โ†’ Applications (as described in Method 1). โœ… Activity Limitation: In the battery settings for each application, set the "Limited" mode". โŒ Complete removal: no ADB You can't have root rights. You need a computer to clean it deeper. ADB) or unblocked loader (for custom firmware).