Losing progress in a mobile game is one of the most unpleasant situations for a gamer. You spent hours completing the game, collecting rare items or reaching a high level, and after reinstalling the application or resetting the phone, everything disappeared. Fortunately, save files ( Android save files (saves) can almost always be found and restored - if you know where to look.

In this article we will look at all possible storage locations for saves: from standard folders in the device memory to cloud services and hidden directories. You'll learn how local saves differ from synchronized ones, what tools can help you detect them, and what to do if the game doesn't display your progress after transferring files. And also - how to force some games to save data in accessible folders, and not in protected sections of the system.

1. Where games store saves: 3 main types

Before looking for files, it is important to understand exactly how the game saves progress. This determines where and in what format the data will be stored. All mobile games on Android are divided into three categories according to the type of storage:

  • ๐Ÿ“ Local saves in the game folder - the most common option. The files are publicly available in the folder /Android/data/ or /Android/obb/, they can be copied manually.
  • โ˜๏ธ Cloud synchronization โ€” progress is tied to the account Google Play Games, Facebook or the developerโ€™s own server. In this case, local files may be missing.
  • ๐Ÿ”’ Protected system saving โ€” some games (especially with anti-cheat) store data in closed sections /data/data/accessible only through root or ADB.

Most modern games use a combination of the first two methods: main progress is synchronized with the cloud, and additional settings (for example, graphic settings) are stored locally. The exception is offline games without Internet access: they almost always save data only on the device.

๐Ÿ“Š How do you usually save progress in mobile games?
Manual backup of files
Rely on the cloud
I never think about This
I use third-party utilities

2. Standard paths to save files

If the game does not use the cloud, its saves are most likely located in one of the standard folders Android. Here's where you should look first:

Folder Path What is stored Do you need root access?
Game data folder /storage/emulated/0/Android/data/[package.name]/files/ Saves, configs, cache No
OBB files /storage/emulated/0/Android/obb/[package.name]/ Additional resources (maps, textures) No
External SD card /storage/XXXX-XXXX/Android/data/[package.name]/ Saves (if the game supports SD) No
System data /data/data/[package.name]/ Secure saves, databases Yes

To find a specific game folder, you will need it package identifier (for example, com.mojang.minecraftpe for Minecraft). You can find it out:

  • ๐Ÿ” Through Google Play: open the game page in the browser - the ID will be in the address after id=.
  • ๐Ÿ“ฑ Through the phone settings: Settings โ†’ Applications โ†’ [game name] โ†’ Additional.
  • ๐Ÿ› ๏ธ Via ADB: command
    adb shell pm list packages | grep "name"
๐Ÿ’ก

If the game is not displayed in the list of applications, try to find it by searching for a keyword in Google Play - sometimes the names in the system and the store are different.

3. How to access hidden folders without root

Many games store critical data in /data/data/ a folder that is inaccessible without superuser rights. But there are several ways to get around this limitation:

Method 1: Use ADB (Android Debug Bridge)

This is an official tool from Googlethat allows you to interact with the system via a computer. To copy files:

  1. Enable USB debugging in the developer settings (Settings โ†’ About phone โ†’ Number assembly - press 7 times).
  2. Connect your phone to the PC and run the command:
    adb backup -f backup.ab -apk -obb -shared -all -nosystem

    This will backup all applications (including their data) to a file backup.ab.

  3. Unzip the file using Android Backup Extractor.

Method 2: Backup via Titanium Backup (requires root)

If you have rootinstall Titanium Backup and make a backup of the game data. The app allows you to upload files from /data/data/ to an accessible location.

Method 3: Use File Explorer with ADB access

Applications like FX File Explorer or Solid Explorer can connect to ADB and show hidden folders without full root. To do this:

  1. Enable USB debugging.
  2. In the file manager settings, find the option ADB Root Access.
  3. Connect to the device via adb connect (if you are using Wi-Fi).
What to do if ADB does not see the device?

Make sure that the drivers for your phone model are installed. On Windows, they can be downloaded from the manufacturerโ€™s website (for example Samsung USB Drivers for Samsung devices). Also check that in the debugging settings File transfer (MTP)is selected, and not Charging only.

4. Cloud saves: how to check and restore

If the game supports synchronization with the cloud, your progress can be automatically saved on servers Google Play Games, Facebook or the developer's own platform. Here's how to check:

Google Play Games

  • ๐ŸŽฎ Open the application Play Games.
  • ๐Ÿ“‹ Go to Library โ†’ [game name].
  • โ˜๏ธ Click on the cloud icon - if there are saves, you will see the date of the last synchronization.

Facebook/Other services

Some games (for example Clash of Clans or Candy Crush) tie progress to your account Facebook or Supercell ID. To restore:

  1. Install the game again.
  2. When you first start, select Log in via Facebook (or another service).
  3. Confirm access to your account - progress will be updated automatically.

Developers' own servers

Games like Genshin Impact or Honkai: Star Rail use their own account systems. In this case:

  • ๐Ÿ”‘ Register on the official website of the game.
  • ๐Ÿ“ง Link your email or phone number.
  • ๐Ÿ”„ In the game settings, find the option Link account.

โ˜‘๏ธ Checking cloud saves

Completed: 0 / 4

โš ๏ธ Attention: Some games (for example, PUBG Mobile or Free Fire) block your account when you frequently switch between devices. If you are restoring progress on a new phone, wait until the timeout ends (usually 24-48 hours).

5. Transferring saves to another phone or after a reset

If you change your device or reset your settings, you can transfer your progress in several ways. The main rule: make a backup copy first!

Method 1: Manual file transfer

  1. Find the save folder (see section 2).
  2. Copy it to your PC or cloud storage (Google Drive, Dropbox).
  3. Install the game on a new device and run it at least once (so that folders are created).
  4. Replace new save files with copied old ones.

Method 2: Use Helium (outdated, but working method)

The application Helium (previously Carbon Backup) allowed you to create backups without root, but now it has been removed from Google PlayIf you find the APK, instructions:

  1. Install Helium on both devices.
  2. On the old phone, make a backup of the game data.
  3. Transfer the backup file to the new phone.
  4. Restore data via Helium.

Method 3: Synchronization via the cloud

The most reliable option is to link the game to your account Google Play Games or another service to reinstallation. Then the progress will be adjusted automatically.

๐Ÿ’ก

If the game does not see the copied saves, check the version: save files may be incompatible between different updates. For example, saves Minecraft PE 1.18 will not be loaded in version 1.20.

6. What to do if saves are not found

Sometimes save files seem to disappear. Here are possible reasons and solutions:

  • ๐Ÿ” The game uses non-standard storage โ€” some titles (for example, Altoโ€™s Odyssey) save data in /Android/media/ instead of /Android/data/.
  • ๐Ÿ—‘๏ธ Files deleted by cache cleaner โ€” apps like CCleaner or SD Maid can erase saves if their folder is marked as "garbage".
  • ๐Ÿ”„ Cloud not synchronized โ€”check your Internet connection and authorization in Google Play Games.
  • ๐Ÿ›ก๏ธ Anticheat blocks access - games like Call of Duty: Mobile or PUBG encrypt saves and cannot be copied manually.

If all else fails, try:

  1. Contact game support (usually there is a button Help or Contact Us in the settings).
  2. Search on the forums (for example, 4PDA or Reddit) - users often share recovery methods for specific games.
  3. Use apps like GameGuardian (requires root), which can extract data from memory.
๐Ÿ’ก

For games with anti-cheat (for example, Genshin Impact) the only way to restore progress is to contact support with a linked account. Manually editing files will lead to a ban!

7. How to protect saves from loss in the future

In order not to look for saves in an emergency, follow simple rules:

  • โ˜๏ธ Enable cloud synchronization in all games where they are available. Even if you make manual backups, the cloud will become an insurance policy.
  • ๐Ÿ“… Regularly copy save folders (for example, once a week). You can automate this through Tasker or MacroDroid.
  • ๐Ÿ“ฆ Use specialized backup managers like Swift Backup (requires root) or OAndBackup.
  • ๐Ÿ“ Keep a list of games with non-standard saves - this way you wonโ€™t forget where to look for files for a specific title.

For particularly valuable games (for example, with hundreds of hours of gameplay) itโ€™s worth create double backup:

  1. Copy save files to PC.
  2. Take screenshots or record a video with important moments (for example, inventory).
  3. Export game settings if it supports this function.

โš ๏ธ Attention: Some games (for example Pokรฉmon GO) block your account for suspicious activity if you often restore progress on different devices. To avoid problems, use the same device for backups or wait 1-2 days between transfers.

Frequently asked questions

Is it possible to transfer saves from Android to iOS?

In most cases, no, yes how games on different platforms use different file formats and storage systems. The exception is games with cross-platform synchronization via the cloud (for example Clash Royale or Brawl Stars). In this case, it is enough to log into the same account on iPhone.

Why does the game not see the save after copying the files?

Possible reasons:

  • The files were copied to the wrong folder (check the path to package.name).
  • The game versions on the old and new devices are different.
  • The game uses additional files in /data/data/that were not copied.
  • The saves are encrypted (typical for games with anti-cheat).

Try starting the game, waiting for new files to be created, and then replacing them with old ones.

How find saves for emulators (PPSSPP, Dolphin, ePSXe)?

Emulators store saves in their own folders:

  • PPSSPP: /PSP/SAVEDATA/ or /Android/data/org.ppsspp.ppsspp/files/PSP/SAVEDATA/
  • Dolphin: /Dolphin Emulator/StateSaves/ or /Android/data/org.dolphinemulator.dolphinmmj/files/
  • ePSXe: /epsxe/memcards/

Files usually have extensions .sav, .mcr or .gs.

Is it possible to restore saves after resetting the phone to factory settings?

If you did not make a backup, the chances are minimal. However, try:

  1. Check whether the data has been synchronized with the cloud (Google Play Games, Facebook).
  2. If the phone was connected to a PC, look for backups in the autosave folders (for example, Samsung Smart Switch or Mi PC Suite create backups).
  3. Contact the game support - some developers can restore progress using the device ID.
What games do not allow you to copy saves?

List of games with protected saves (require cloud synchronization or root for access):

  • Genshin Impact (mihoyo)
  • Honkai: Star Rail (mihoyo)
  • Call of Duty: Mobile (Activision)
  • PUBG Mobile / BGMI (Krafton)
  • Free Fire (Garena)
  • Pokรฉmon GO (Niantic)
  • Clash of Clans / Brawl Stars (Supercell, but linked to an account)

For these games, the only reliable way to save progress is to link to an account.