Changing a smartphone is stressful, especially when you need to restore your usual digital ecosystem. The most painful loss for many users is progress in their favorite games. You may have spent hundreds of hours leveling up your character in an RPG or achieving a high rank in a shooter, and losing everything because you change devices seems unfair. Fortunately, the architecture Android allows you to flexibly manage data, including installing applications and transferring saves between different devices.

The transfer process depends on what kind of result you need: simply install the application file itself or save all the accumulated progress. In the first case, the problem is solved in a couple of minutes through cloud storage or special utilities. In the second, deeper account settings and synchronization are required. We will analyze all available methods: from standard Google tools to advanced tools for transfer APK files and cache.

Some users mistakenly believe that it is enough to simply copy the application icon. In fact, the game consists of an installation package and often voluminous additional data that lies in hidden folders on the system. The wrong approach can lead to the game starting, but requiring you to download gigabytes again or starting from the very beginning. Let's take a look at how to avoid these problems and quickly transfer the game to a new phone.

Using cloud saves Google Play Games

The most reliable and official way to save progress is the service Google Play Games. Most modern developers integrate this API into their projects, which allows you to automatically synchronize achievements and saves with the cloud. You don't need to manually copy the files, just make sure that you are logged in with the correct account on your old device.

Check your synchronization settings before changing your phone. Go to the application Settings โ†’ Google โ†’ Settings for games. Make sure the switch is active. Many popular titles, such as Clash of Clans or PUBG Mobile, use their own login systems through social networks, but the Google system service often duplicates this data for backup.

โš ๏ธ Attention: Not all games support cloud saves. Indie projects or old offline games can only store progress in the local memory of the device, which requires other transfer methods.

When you first launch the game on a new smartphone, the system will automatically offer to restore data from the cloud. If this does not happen, check whether you are logged in to the same Google accountas on the previous device. Sometimes you need to manually click the "Restore" button in the menu of the game itself, selecting the desired save point from the list.

๐Ÿ’ก

If the game does not see the save, try clearing the cache of the Google Play Games application on a new device before starting the game.

Transferring APK files and cache via Send Anywhere

If the game does not have cloud synchronization or you want to transfer it to a device without the Internet, you will need to transfer the installation file and data folders. File sharing applications that work via Wi-Fi Direct are ideal for this, for example Send Anywhere or Xender. They allow you to transfer data at high speed without using mobile traffic.

The process is as follows: install the selected application on both phones. On your old device, select the game from the list of applications. The app will automatically find not only the file itself, but also the data associated with it (cache, graphics, sounds), which usually takes up the most space. .apk file, but also the data associated with it (cache, graphics, sounds), which usually takes up the most space.

  • ๐Ÿ“ฒ Launch the transmitter application on both smartphones.
  • ๐Ÿ“‚ Select the game in the "Applications" or "Games" section.
  • ๐Ÿ”— Scan the QR code or enter the 6-digit key on the receiving device.
  • โœ… Confirm the installation on the new phone after the transfer is complete.

It is important to understand the difference between the installation file and the data. The installer itself is light, but the game may require an additional 2-3 GB of data. Good file hosting services pack everything into one archive or sequentially transfer the necessary folders from the directory Android/obb i Android/data. Without these folders, the game will most likely give an error when starting.

๐Ÿ“Š How do you usually transfer games?
Via Google Account
Via Send Anywhere
Download again
Via cable PC

Standard "Quick Setup" tool from Google

Google has implemented a convenient data migration wizard in modern versions Android (starting from 6.0 and higher). This method is the easiest for users who do not want to deal with the file system. It works during the initial setup of a new smartphone or can be launched manually through the settings.

To use this method, place the phones next to each other. On your new device, during the setup process, select the "Copy apps and data" option. The system will prompt you to use a USB-C cable or a wireless connection. The cable provides more stable speeds, especially if you play a lot of heavy games.

Settings โ†’ System โ†’ Advanced settings โ†’ Data transfer

The Transfer Wizard will copy the list of installed applications and try to download them from the store Google Play on a new device. In some cases, if the Android version is very different, the system may transfer the application files themselves to speed up the process. This eliminates the need to download gigabytes of traffic from the Internet.

โš ๏ธ Attention: The settings menu interface may differ depending on the manufacturer's shell (MIUI, OneUI, ColorOS). Look for sections with the words โ€œCloningโ€, โ€œMigrationโ€ or โ€œTransferโ€.

After the process is completed, game icons will appear on the desktop. However, they may need time to download updates or check licenses in the background. Do not delete old data right away until you are sure that all games on the new phone work correctly and see saves.

๐Ÿ’ก

A cable connection is preferable to a wireless connection when transferring more than 10 GB of data, as it is more stable and faster.

Manually copying the OBB and Data folders

For advanced users who are faced with Games that are not transferred using standard methods require manual copying. This method requires access to the file system and an understanding of the directory structure Android. It is necessary when automatic tools ignore the application cache.

You will need a file manager with advanced rights, for example Total Commander or Mixplorer. The main task is to find and copy the contents of specific folders where game resources are stored. This data is not deleted when you normally uninstall the application, but it is not always transferred automatically.

Data type Folder path What it contains Must be copied
Graphics cache Android/obb/com.name.game Textures, models, levels Yes, the game will not start
User data Android/data/com.name.game Settings, logs, temporary files Desirable
Local saves Internal Storage/Game_Name Save files (often .dat or .sav) Yes, for progress

Copy the necessary directories to the internal memory of the new phone, observing the same path structure. If the obb or data folders are not yet on the new device, create them manually before inserting files. After that, install the APK file of the game, but do not launch it immediately.

What to do if access rights prohibit copying?

In Android 11 and higher, access to the Android/data folder is limited. Use a PC with ADB app or a file manager with Shizuku support to bypass restrictions.

Transfer via computer and ADB

The most technically complex, but universal method is to use USB debugging and utility ADB (Android Debug Bridge). This method allows you to create a complete backup of the application along with its data, even if the system does not allow direct access to the files. The method requires a computer with platform drivers installed.

First, enable developer mode on your phone. Go to Settings โ†’ About phone and click 7 times on the build number. Then in the menu for developers, activate the item USB debugging. Connect the phone to the PC with a cable and confirm permission for debugging in the pop-up window on the smartphone screen.

The backup command is as follows:

adb backup -f game_backup.ab -apk com.package.name

Replace com.package.name with the real game ID (you can find it in the Play Market store in the address bar). After executing the command, your phone will ask you to confirm the creation of the backup copy. Enter the password, if required, and click "Create a backup."

To restore to a new device, connect it to your PC and enter the command:

adb restore game_backup.ab

This method guarantees the transfer of absolutely all data, including those that are hidden from ordinary file managers. However, it may not work with applications where the developer has explicitly disabled backup in the app manifest.

โš ๏ธ Warning: ADB commands are case and syntax sensitive. An error in one letter will result in the process not starting. Carefully check the name of the game package.

Restoring progress through social networks

Many modern mobile games are not tied to the device, but to social network accounts or developer services. This is the most convenient way for a cross-platform transition, for example, from Android to iOS or vice versa. Popular services include Facebook, VK Play, Game Center (for Apple) and their own IDs like Supercell ID or HoYoverse Account.

Before deleting a game from your old phone, go to its settings and find the โ€œAccountโ€ or โ€œProfileโ€ section. Click the link button and select a convenient login method. Make sure you see a successful sync message. Users often forget to do this and lose progress when resetting the device.

  • ๐Ÿ”‘ Create a unique ID inside the game (for example, Supercell ID) if you do not want to use social networks.
  • ๐Ÿ“ง Link your email to restore access if you lose your phone.
  • ๐Ÿ”’ Remember your password third-party service, since resetting the password may take time.

Install the game on your new phone, go through a short tutorial (if it is required at the start), then go to settings and click โ€œLoginโ€. Choose the same method you used before. Progress will be loaded automatically, replacing the local data of the new session.

โ˜‘๏ธ Preparing for transfer via social networks

Done: 0 / 5

Frequently asked questions (FAQ)

Is it possible to transfer the game if the screen on an old phone is broken?

Yes, if USB debugging is enabled and the phone is detected by the computer. You can use utilities like Scrcpy to control the screen from a PC or use ADB to create a backup, as described above. If the screen does not work at all and debugging is turned off, it is almost impossible to transfer data programmatically.

Why does the game require you to download the data again after transfer?

This happens if you transferred only the APK file, but not the folder Android/obb. The game installer sees that there are no resources and downloads them from the server. To avoid this, use methods with complete data copying (Send Anywhere or manual copying of folders).

Will progress in offline games without the Internet be saved?

Only if you use manual copying of save files or a full backup via ADB. Google's standard tools require at least a short-term connection to the network to synchronize metadata. For completely offline games, the best way is to clone the data partition via root or ADB.

Is it safe to transfer APK files through third-party applications?

Yes, if you transfer the file directly from phone to phone via Wi-Fi Direct (without uploading to the cloud). In this case, the file does not pass through third party servers. However, always check the digital signature of the application after installation to ensure that the file has not been modified.

What should you do if the game shows a "License not found" error after transferring?

License errors often occur when transferring paid or protected games. Try running Google Play Market on a new device, find this game in the "My Applications" section and click "Open" or "Update". This will update the license token in the system.