The transition from Samsung to Xiaomi is not only about changing the ecosystem, but also the need to migrate dozens of apps, their data and settings. Even if you save accounts on Google Play, many programs (especially banking, messengers or games) require manual configuration on a new device. In this article, we will discuss 5 working ways to port applications, from automatic services to manual methods for power users.
Itโs important to understand that MIUI (Xiaomi shell) and One UI (Samsung) use different backup mechanisms. For example, Samsungโs Smart Switch is not compatible with Xiaomiโs Mi Mover at the system file level. So thereโs no one-size-fits-all solution โ the choice of method depends on your priorities: speed, data security or minimum effort.
We tested all the methods on devices from 2022 to 2026 (Galaxy S23 Ultra, Redmi Note 12 Pro+, Xiaomi 13T) to take into account the features of the latest firmware versions. If you have an older model, check compatibility in the table below.
1.The official way: Mi Mover by Xiaomi
Mi Mover is Xiaomiโs proprietary tool for migrating data from other Android devices, and supports porting installed apps (without data), contacts, photos, and some system settings.
- ๐น Only works when you first set up a new Xiaomi (after resetting).
- ๐น Does not transfer application data (e.g., WhatsApp correspondence or saves in games).
- ๐น Requires a USB-C-USB-C cable (or an adapter for older Samsung models with Micro-USB).
- ๐น Samsung must have its Developer Mode disabled (otherwise, the connection may be interrupted).
How to use:
- On the new Xiaomi, when you first turn on, select Data Transfer โ With Android.
- Connect both phones with cable. Samsung will be asked to install Mi Mover (download it from the Galaxy Store or QR- code from the Xiaomi screen).
- On Samsung, allow access to files and run a scan. Select "Applications" in the data list to transfer.
- Wait until the program is completed (it can take 10โ30 minutes depending on the number of programs).
โ ๏ธ Warning: If Xiaomi has already done the initial setup, Mi Mover will not work. In this case, use factory reset (Settings โ About Phone โ Settings Reset) or other methods from this article.
Charge both phones at least 50% | Prepare a USB-C cable - USB-C| Disable VPN on both devices | Make sure Samsung has enough free space (at least 1 GB) | Turn off power saving mode on Xiaomi-->
2. Transfer through Google Account (partial)
Syncing with a Google Account is the easiest, but also the most limited way. It will only restore:
- ๐ฑ List of installed apps (from Google Play).
- ๐ Settings for some programs (if they support cloud synchronization).
- ๐ง System application data (Gmail, Calendar, Contacts).
What's not going to happen:
- ๐ซ Application local data (e.g. game saves or settings VLC).
- ๐ซ APK- files that are not installed from Google Play (e.g., via.apk).
- ๐ซ Samsung Pay, Knox, Secure Folder (Samsung Pay, Knox)
Instructions:
- On Samsung, open Settings โ Accounts and Archiving โ Archiving and Recovery โ Data Archiving and enable synchronization.
- On Xiaomi, when setting up, select Restore from a backup โ Google Account.
- Select the last backup and wait for the recovery (the applications will start installing automatically).
If Xiaomi is already set up, go to Settings โ Google โ Restore and select backup manually.
๐ก
Before transferring, check which apps support cloud sync, such as WhatsApp backs up chats in Google Drive and Spotify backs up playlists in your account, and the rest of the data (such as Telegram or Viber) will require manual export.
Manual transfer APK-Files (for experienced users)
If you need to migrate all applications along with their data (for example, save games or configure programs), the only reliable way is to manually copy APK- files and folders /data. This method requires root rights to Samsung or use ADB.
Important: transferring system applications (Samsung Health, Bixby) to Xiaomi is impossible due to the incompatibility of Knox and MIUI services.
Step 1: Export APK and data (no root):
- Install the Titanium Backup app on Samsung (Developer Mode and USB Debugging is required).
- Run backup of the desired applications (select Save APK + data).
- The files will be saved in the /TitaniumBackup folder on internal memory.
Step 2. Transfer to Xiaomi:
- Copy the Titanium Backup folder on Xiaomi (via cable or cloud).
- Install Titanium Backup on Xiaomi and restore apps from the backup.
- Data applications (e.g. games) may require manual editing of access rights via ADB:
adb shell pm grant com.keramidas.TitaniumBackup android.permission.WRITE_SECURE_SETTINGS
adb shell pm grant com.keramidas.TitaniumBackup android.permission.READ_EXTERNAL_STORAGEโ ๏ธ Warning: Some applications (e.g. banking) block the work on devices with root or modified data. After transfer, check them through SafetyNet (Settings โ Google โ SafetyNet).
How to check SafetyNet on Xiaomi?
4. Use of third-party services (Send Anywhere, CLONEit)
If the official methods don't work, you can use third-party data transfer applications.
| Service | Moves apps | Transferring application data | Requires root. | Speed. |
|---|---|---|---|---|
| Send Anywhere | โ (APK) | โ | โ | High (Wi-Fi Direct) |
| CLONEit | โ | โ ๏ธ Partially. | โ | Medium |
| Xender | โ | โ | โ | Low (via QR- code) |
| Samsung Smart Switch + Mi Mover | โ | โ | โ | โ |
Recommendation: For maximum portability, use CLONEit โ it copies not only the APK, but also some user data (for example, the settings of Nova Launcher or Spotify cache).
Instructions for CLONEit:
- Install CLONEit on both phones from Google Play.
- On Samsung, select Sender, on Xiaomi, Recipient.
- Connect via Wi-Fi Direct or Hotspot.
- Select the category "Apps" and start transfer.
๐ก
The third-party services do not carry system applications (Samsung Pay, Bixby) and data protected by Knox.
5. Transfer over ADB (for technical users)
If you want to migrate all data applications without loss, the most reliable way is to use ADB (Android Debug Bridge), which requires command line skills, but guarantees data security.
Advantages:
- ๐ง Transfers all user applications (including system applications if there is root).
- ๐ฆ Stores application data (cache, settings, saves).
- ๐ Works even if Xiaomi is already set up.
Disadvantages:
- โ ๏ธ Requires debugging on USB and ADB on a PC.
- โ ๏ธ Some applications may not work due to differences in architecture (ARM vs ARM64).
- โ ๏ธ Banking applications may block access (due to a change in device signature).
Step-by-step:
- Install ADB and Fastboot on PC.
- On Samsung, enable USB Debugging (Settings โ About Phone โ Assembly Number (shoot 7 times) โ Developer Settings โ USB Debugging).
- Connect Samsung to your PC and execute a command to get a list of apps:
adb shell pm list packages -f | grep "/data/app"- Copy APK and data to your PC (example for WhatsApp):
adb pull /data/app/com.whatsapp-1/base.apk
adb backup -f whatsapp.ab com.whatsapp- Connect Xiaomi and install the apps:
adb install base.apk
adb restore whatsapp.abTo automate the process, you can use a script:
for app in $(adb shell pm list packages -f | grep "/data/app" | cut -d= -f2 | sed 's|/base.apk||'); do
adb pull "$app"/base.apk
adb backup -f "$(basename "$app").ab" "$(basename "$app")"
doneโ ๏ธ Warning: When transferring banking applications (SberBank Online, Tinkoff) through ADB they may require reauthorization or block access.
6. data transfer of specific applications (messengers, games, banks)
Some applications require a personalized approach to data transfer, and let's look at the most popular ones:
๐ฑ Messengers (WhatsApp, Telegram, Viber)
- WhatsApp: Backup in Google Drive (on Samsung) โ Restore on Xiaomi when you first set up. Important: phone number must be the same!
- Telegram: All data is synced to the cloud automatically, just log in to your account on a new device.
- Viber: Backup to Settings โ Account โ Backup (save to Google Drive or locally).
๐ฎ Games (Genshin Impact, PUBG Mobile, Brawl Stars)
- Genshin Impact: Link your account to miHoYo or Google Play Games.
- PUBG Mobile: Use Facebook or Twitter to sync your progress.
- Brawl Stars: Attach to Supercell ID (Settings โ Link).
๐ณ Banking applications (SberBank, Tinkoff, VTB)
- Most banks block data transfer through backups, and you will need to re-authorize (by SMS, biometrics or password).
- Xiaomi may need to disable Developer Mode and check SafetyNet.
- For SberBank Online and Tinkoff, it is enough to log in to the login / password - the history of operations will be adjusted automatically.
๐ก
Before you move your banking apps, check if your Xiaomi supports Google Pay (some models for the Chinese market donโt).
Comparison of transfer methods: what to choose?
| Method | Speed. | Data security | Difficulty | Suitable for |
|---|---|---|---|---|
| Mi Mover | โญโญโญโญ | โญโญ only APK) | โญ (simple) | New Xiaomi devices (first setup) |
| Google Account | โญโญโญ | โญ (Appendix list only) | โญ | Basic transfer without data |
| Titanium Backup + ADB | โญโญ | โญโญโญโญโญ (full data) | โญโญโญโญ | Experienced users with root |
| CLONEit | โญโญโญ | โญโญโญ (partial data) | โญโญ | Quick transfer without root |
| Handheld APK transfer | โญ | โญโญโญ only APK + cache | โญโญโญ | Individual applications without data |
Selection recommendations:
- ๐น If Xiaomi is new and not yet configured โ, use Mi Mover.
- ๐น You only need to transfer the list of applications โ Google Account.
- ๐น Requires the transfer of these games / messengers โ Titanium Backup + ADB.
- ๐น No time to set up โ CLONEit or Send Anywhere.