How to permanently ban the cloning of the Xiaomi Family Link app: 7 working ways

Xiaomi Family Link is the official parental control app that allows you to limit the time of use of a smartphone by children, block unwanted applications and track location. However, some users face the problem of cloning this application – when a duplicate of it appears on the device, often created through the functions of Dual Applications in the app. MIUI It's not only disrupting parental control, it's also creating security holes.

In this article, we will discuss all possible ways to ban cloning - from standard settings. MIUI before using hidden functions ADB We will focus on methods that work even on devices with unlocked bootloader or root rights, and we will also consider how to prevent duplicates from appearing again after resetting settings.

Important: Some methods require technical knowledge. If you are not sure about your actions, skip the sections with the following: ADB root – they are designed for experienced users.

Cloning of an application can occur for several reasons:

  • πŸ”„ The function β€œDual annexes” in MIUI β€” User (usually child) creates a copy through Settings β†’ Annexes β†’ Dual applications to get around restrictions.
  • πŸ“± Third-party launchers or utilities (e.g. Parallel Space, 2Accounts), which allow you to run several instances of one application.
  • πŸ”§ Changes in system files – on devices with root or custom firmware, you can manually duplicate APK-file.
  • πŸ€– Automatic scripts (rarely) – some malware creates copies of system applications to collect data.

Consequences of cloning:

  • ⚠️ Bypassing parental controls – the child accesses blocked functions through a copy of the app.
  • πŸ”“ Data Leakage – A duplicate can send location or activity information to third-party servers.
  • πŸ“‰ System load – two instances of Family Link simultaneously consume additional battery and RAM resources.

⚠️ Note: If a copy of Xiaomi Family Link appears on your device without your knowledge, first check it for viruses using Google Play Protect or Malwarebytes.

Method 1: Disable the function "Dual applications" in MIUI

The easiest method is to block the possibility of creating duplicates through standard settings. MIUI. This method works on all Xiaomi, Redmi and other devices. POCO firmware MIUI 12 and above.

Instructions:

  1. Open the Settings β†’ Applications.
  2. Select Double Apps (in some versions, App Cloning).
  3. Find the Xiaomi Family Link in the list and turn off the switch next to it.
  4. If a copy has already been created, click on it and select Delete.

The system then blocks the ability to clone Family Link through standard means, but this method does not protect against third-party utilities (such as Parallel Space) or manual duplication. APK.

Make sure that the dual apps feature is turned off for Family Link|

Check the list of installed applications for duplicates|

Reset the device to apply changes|

Set a password for settings MIUI (optionally)-->

Method 2: Blocking the installation of third-party launchers and utilities

If a child uses apps like Parallel Space or Island to make copies, they need to be blocked.

  • πŸ”’ Parental controls on Google Play – limit the installation of apps by age rating.
  • πŸ“± Settings MIUI β€” disable the installation option APK from unknown sources (Settings) β†’ Privacy β†’ Special permits β†’ Installation of unknown applications).
  • πŸ›‘οΈ Third-party antiviruses (such as Kaspersky or Bitdefender) – they can block the installation of suspicious utilities.

How to block installation APK:

  1. Go to Settings β†’ Privacy β†’ Special permissions.
  2. Select Install Unknown Applications.
  3. For each browser and file manager (e.g. Chrome, Files) disable the installation permission APK.

⚠️ Note: If Parallel Space or a similar utility is already installed on the device, manually delete it first through Settings. β†’ Applications: Some of these programs are disguised as system services (e.g. com.lbe.parallel).

Parallel Space|

2Accounts|

Island (Work Profile)|

Dual annexes MIUI|

Other/I don't know-->

Method 3: Use ADB Blocking cloning (for experienced cloning)

If standard methods do not help, you can use debugging on the ADB (Android Debug Bridge: This method requires connecting the device to a computer and executing commands via Terminal or PowerShell.

Advantages of the method:

  • πŸ”§ It works even if the child knows the password from the device.
  • πŸ”’ Blocks cloning at the system level.
  • πŸ“± Doesn't require root rights.

Instructions:

  1. Turn on Developer Mode on your smartphone: go to Settings β†’ About Phone and 7 times click on the MIUI version.
  2. Return to Settings β†’ Additional β†’ For developers and activate Debugging over USB.
  3. Connect the device to the PC, install drivers ADB (For example, through Minimal ADB and Fastboot).
  4. Open the command line and do:
adb devices

(Your device should show up. If not, check the drivers or cable.)

adb shell pm hide com.miui.dualapp

This command hides the module of dual applications in MIUI. After the reboot, the cloning function will disappear from the settings menu.

To get it all back, do this:

adb shell pm unhide com.miui.dualapp

⚠️ Attention: On some firmware MIUI 14+ The pm hide command may not work. In this case, use an alternative method through the ADB:

adb shell settings put global dual_app_enabled 0

πŸ’‘

If the dual apps function is still available after the commands are executed, try to delete all existing clones first through Settings. β†’ Appendices and then repeat the procedure.

Method 4: Prohibit cloning through root access (for advanced)

If a device has root rights (e.g., through Magisk), you can completely remove or freeze the system components responsible for cloning, a method that is most reliable, but requires caution - wrong actions can lead to a system failure.

What can be done:

  • 🧊 Freeze the dual application module via Titanium Backup or Lucky Patcher.
  • πŸ—‘οΈ Delete APK-manual clone files (e.g., via Root Explorer).
  • πŸ”§ Change the permissions to access system files to prevent them from being modified.

Step-by-step instructions for Magisk:

  1. Install Magisk Manager and check for root.
  2. Download the App Systemizer module to Magisk and activate it.
  3. Through Termux or ADB execute:
su


pm uninstall --user 0 com.miui.dualapp

This will remove the dual application module for the current user. To return it, reinstall it through ADB:

cmd package install-existing com.miui.dualapp

To completely remove the system APK (Not recommended without a backup):

su


mount -o rw,remount /system




rm /system/priv-app/DualApp/DualApp.apk




mount -o ro,remount /system

⚠️ Attention: Removal of system APK This can lead to bootloop. Before experimenting, back up through TWRP Or OrangeFox.

What to do after removing the system APK device not loading?
If the smartphone is stuck on the logo MIUI After deleting system files, follow the following steps: 1. Load into Recovery Mode (clip the power supply) + Loudness up). 2. Connect to the PC and through ADB Do it: Adb push. DualApp.apk /system/priv-app/DualApp/ adb shell chmod 644 /system/priv-app/DualApp/DualApp.apk 3. Reboot the device. If that doesn't work, restore the backup through TWRP Or run the firmware again through the Mi Flash Tool.

If you're using not only Xiaomi Family Link, but also Google Family Link, you can set up additional restrictions that will duplicate the protection, which is especially useful if a child is trying to circumvent control through cloning.

How to set up:

  1. Install Google Family Link on your device and your child’s.
  2. In the child profile settings, select Application Management.
  3. Find Xiaomi Family Link and block its installation (if you already have a copy, delete it).
  4. Activate the option Only allowed applications – this will prevent the installation of any new programs without your confirmation.

Advantages of this method:

  • πŸ”’ Double protection – even if the child is out MIUI, Google Family Link will block the installation of copies.
  • πŸ“Š Remote management – you can control your device through the Google Families web interface.
  • πŸ”” Notifications – You will receive alerts about attempts to install new applications.
Protection methodRequired. root/ADBProtects fromDifficulty
Disabling "Dual Applications"❌ No.Cloning through MIUI⭐ Easy.
Blocking of Unknown Sources❌ No.Installation of Parallel Space⭐ Easy.
ADB-team⚠️ ADBSystemic cloning⭐⭐ Middle-Average
Removal through rootβœ… RootAny copies⭐⭐⭐ Hardly.
Google Family Link❌ No.Installation of new applications⭐ Easy.

Method 6: Resetting and preventing re-cloning

If all the methods didn't work, or you suspect that the device has hidden cloning utilities, the most radical way is to completely reset the settings, but then you need to configure the system correctly to prevent duplicates from reappearing.

How to Reset Your Settings Safely:

  1. Back up your important data (photos, contacts) via Mi Cloud or Google Drive.
  2. Go to Settings β†’ About the phone β†’ Reset settings.
  3. Choose to erase all data and confirm the action.
  4. After the reboot, do not restore the settings from the backup – configure the device as new.

How to prevent cloning after resetting:

  • πŸ” Set a password for settings MIUI (Settings β†’ Password and security β†’ Blocking settings).
  • πŸ“± Disable Dual Applications immediately after setting up (see Method 1).
  • πŸ”§ Set up Google Family Link and set up the restrictions (see Method 5).
  • πŸ›‘οΈ Activate Google’s Find My Device to remotely lock your device when suspicious activity occurs.

⚠️ Note: If the smartphone was purchased used or previously used by another person, before reset, be sure to untie it from the previous Mi Account. Otherwise, after reset, the device will require the entry of an old password (Mi Account protection).

Method 7: Alternative Parental Control Applications

If Xiaomi Family Link is constantly cloned and you can’t prevent it, consider using alternative parental control apps, which often have more robust bypass protection.

Best analogues:

  • πŸ›‘οΈ Google Family Link – free, integrated with Google account, allows you to block the installation of new applications.
  • πŸ”’ Kaspersky Safe Kids – a paid solution with geolocation and website blocking.
  • πŸ“± Norton Family – monitors social media activity and limits screen time.
  • πŸ” Qustodio – supports cross-platform control (Android, iOS, Windows).

Advantages of alternative solutions:

  • πŸ”„ Fewer cloning vulnerabilities (many work through Device Admin or Work Profile).
  • πŸ“Š More flexible settings (e.g., schedule locks).
  • πŸ”” Notifications of attempts to circumvent restrictions.

How to switch to another application:

  1. Remove the Xiaomi Family Link and all copies of it.
  2. Install the selected application from Google Play.
  3. Set up your child’s profile and activate all necessary restrictions.
  4. Block the ability to uninstall the application via Device Admin (in Android security settings).

πŸ’‘

If you decide to use an alternative, first check it for compatibility with your version of Android. Some apps (such as Kaspersky Safe Kids) may not work on custom firmware or devices with an unlocked bootloader.

Can cloning be banned without root rights?
Yes, most methods (disabling Double Apps, blocking unknown sources, Google Family Link) do not require root, but they do not provide 100% protection - an experienced user can bypass them through the Internet. ADB third-party.
What if my child knows the password for my Mi Account?
Change your Mi Account password and activate two-factor authentication. Then untie your child’s device from your account in Settings. β†’ Accounts. β†’ Mi Account and set up control again.
How do I know if I have a copy of Family Link on my device?
Check: List of installed applications in Settings β†’ Applications (look for duplicates marked "Clone" or "Dual"). Battery consumption - if Family Link consumes more than usual, a copy may work. Notifications - sometimes a duplicate sends its own alerts. ADB-Command: adb shell pm list packages | grep family If the output is more than one line – the device has a copy.
Will Xiaomi Family Link work after resetting?
Yes, but you'll have to re-install the app on both devices (parent and child) and link them through the QR-Set up restrictions (use time, application locks) and we recommend that you save screenshots of current settings before resetting to quickly restore them.
Can cloning be blocked at the server level of Xiaomi?
No, Xiaomi doesn't provide these features. All lock settings are done locally on the device. However, you can: Contact Xiaomi and report the problem (it's unlikely that they will help, but feedback is important to leave); Use cloud services (for example, Google Family Link) for duplicate protection.