Xiaomi smartphone owners often encounter pre-installed software that isn't always necessary. Google Duo is a video caller that is built into many Android-powered devices by default. Despite the service's usefulness to some users, others choose not to use it at all, preferring alternatives or simply wanting to free up the system's resources.
The problem is that standard methods, such as routine menu removal, can't get rid of this app. MIUI and pure Android classify Google Duo as a system component, protecting it from accidental deletion. However, there are proven ways to deactivate or completely remove the package that don't require superuser rights.
In this article, we will discuss in detail the safe algorithms of actions, you will learn how to hide an application, turn off its background activity or completely unload from the device memory.
Why Google Duo Cannot Be Deleted in the Normal Way
The main reason for the inability to remove standard features is the Android security architecture. Google Duo is often integrated into the system partition /system/app or /system/priv-app. The operating system considers such components to be critical to the underlying functionality, even if the user is not using them. Trying to remove them through the standard Settings β Applications interface will end in error or the Remove button will simply be inactive.
In addition, smartphone manufacturers, including Xiaomi, have agreements with Google to pre-install a specific set of services. GMS (That's why you see these icons right after you unpack a new gadget, and the "normal" way of removing it is locked at the permission level.
β οΈ Note: Attempts to delete system files through third-party file managers without appropriate rights can result in a cyclical device reboot (bootloop).
However, there are workarounds, which are based on the use of the ADB debugging bridge (Android Debug Bridge) or specialized utilities that work in conjunction with the computer, which allow you to temporarily or permanently hide packets from the system, making them invisible and inactive.
- π± System rights limit removal of basic Google components.
- π Certification policy GMS requires a specific set of applications.
- πΎ Standard interface hides the removal button for protected packets.
Preparing a smartphone to remove system applications
Before you start to act, you need to configure the device correctly. USB debugging is a key parameter that opens up access to hidden system management functions. Without this option, the computer will not be able to send commands to a Xiaomi smartphone.
First, activate the developer mode. To do this, go to Settings β About Phone and find the MIUI Version (or Android Version) string. Click on it 7-10 times in a row until the notification that you have become a developer appears, and then a new section will appear in the settings menu.
Settings β Additional settings β For developersIn the list that opens, find the USB Debug and activate the switch. The system will warn you of the risks - confirm the action. It is also recommended to enable the option "Debug over USB (security settings)" if it is available to allow you to install applications and change rights through the computer.
βοΈ Checklist of device preparation
It is important to use quality cable to connect. Cheap cables can only work to charge without transmitting data, which will lead to connection errors. Make sure the screen is unlocked, and when you first connect to a PC, confirm the request for debugging permission in the pop-up window on the smartphone screen.
Disconnection method through system settings
The safest, though not always completely uninstallable, way to disable an app is to disable it. In some versions of MIUI and Android, Google Duo allows itself to "disable" -- an action that hides the icon, stops all processes, and prevents the app from starting.
To do this, go to Settings β Applications β All apps. Find Duo. If the Remove button is inactive, check for the "Disable" button. By pressing it, you effectively freeze the application. It will stop taking up RAM and consuming the battery, although the files will physically remain in the system partition.
β οΈ Note: If the "Disable" button is gray or missing, then the manufacturer has rigidly blocked the management of this package. ADB.
The advantage of this method is that it's reversible, and you can turn the app back on at any time with a single click, which is ideal for users who are afraid to make changes to system files but want to remove the annoying element from the interface.
- π Complete stop of application background processes.
- π Ability to quickly restore to the original state.
- π Reduced resource consumption without risk to the system.
Once disabled, the Google Duo icon will disappear from the menu and desktop, but in the list of installed applications, it can appear as "Disabled." This is normal system behavior.
Removal via ADB (Android Debug Bridge)
The most effective method to completely remove the application for the current user is to use the ADB command line. This method does not require Root rights, which saves the warranty on the device. You will need a computer (Windows, macOS or Linux) and a set of Platform Tools tools.
First, download and unpack the SDK Platform Tools from Google's official website. Connect your smartphone to your PC in debugging mode. Open the command prompt (CMD or PowerShell) in the ADB tool folder. Enter the adb device command to check the connection. On the phone screen, a confirmation should appear β click "Allow".
Now you need to know the exact name of the app package. For Google Duo, it usually looks like com.google.android.apps.tachyon. To remove (hide) the app, use the command:
adb shell pm uninstall -k --user 0 com.google.android.apps.tachyonThe --user 0 option means that the app is removed for the main user, but stays on the system in case of a reset. This is a safe method. If you want to just hide the application, you can use the adb shell pm hide command, but uninstall more reliably clears the cache and data.
Use of Xiaomi ADB/Fastboot Tools
For those who donβt want to mess with the command line, there is a great alternative β the Xiaomi program. ADB/Fastboot Tools. is a cross-platform application with a graphical interface, created specifically for owners of Xiaomi, Redmi and other products. POCO.
The program automatically identifies the connected device and lists all installed applications, including system ones. You don't need to know the exact packet names. In the list, find Duo (often labeled as System App). Just highlight it and click on "Uninstall" or "Deactivate."
| Function | ADB Command Line | Xiaomi ADB Tools | Third-party App Remover |
|---|---|---|---|
| Difficulty | High (code needed) | Low (graphic interface) | Medium |
| Security | High (User control) | High (verified software) | Average (advertising risk) |
| Speed. | Quickly. | Very quickly. | Depends on the software. |
| Requirements | PC, drivers | PC, Java (sometimes) | Just a phone. |
It also allows you to remove ads in the system, clear the MIUI Daemon partition, and change the region, which is a powerful tool in the hands of an experienced user, but as with any software, you should only download it from trusted sources, such as from a developer's GitHub.
β οΈ Note: Do not remove applications you are not sure about, remove critical system components (e.g. Security or Security) MIUI Home: Could make your phone inoperable.
Possible problems and solutions
Unforeseen situations can occur during the removal process. One of the common problems is the Failure error. [DELETE_FAILED_INTERNAL_ERROR]. This could mean that the application is actively used by the system or has device privileges. Try first to disable the application through the settings and then run the uninstall command via ADB.
Sometimes, after a MIUI firmware update, remote applications can come back, which is because the system partition is updated and the "cut" files are restored from the factory image, in which case you have to repeat the procedure, using the uninstall -k command helps save data, but does not protect against recovery when you flash it.
If the phone stopped working properly after removal, you can restore a standard set of applications.
adb shell cmd package install-existing com.google.android.apps.tachyonThis team reinstalls the package from the system storage, returning everything as it was, and it is worth considering that some features tied to the Google ecosystem may require the presence of certain libraries, although this is rare for Duo.
- π When you update the system, remote applications can return.
- β οΈ Deletion errors are often solved by pre-disabling.
- β©οΈ There is always a possibility to reset the package. ADB.