Mobile version of the cult bagel Dead Cells from Playdigious i Motion Twin offers the same hardcore gameplay as on PC or consoles, but with its own storage features. Players are often faced with the need to transfer their progress to a new device, make a backup copy before updating the game, or simply want to understand the system file structure. Understanding where save files are physically located is critical for advanced users.
Unlike desktop versions, where save folders are often visible in Documents, Android mobile devices have a strict application isolation policy. The system restricts access to data from other apps for security reasons, so finding the desired directory without special knowledge or rights can be difficult. However, knowing the exact path and features of the file system in different versions of the OS, you can easily Locate your files.
In this article we will analyze in detail the data storage architecture for Dead Cells on the Android platform. We will look at standard access paths through file managers, features of working with root access, and methods of using the ADB debug bridge for those who do not want to root the device. You will also learn how to distinguish local saves from cloud saves and what to do if the game stops seeing your progress after reinstalling.
Standard path to save files in Android 10 and below
Before the release of Android 11, the data storage system was more open to the user. In these versions of the operating system, it was possible to access the internal storage directly through any pre-installed file manager. The path to game data Dead Cells in such systems looks relatively logical and follows the general structure of application directories.
The main directory, where all user game data is stored, is located in the root of the internal drive. You need to go to the folder Android, then open the subdirectory data. This is where the private files of installed applications are located. For Dead Cells the specific path will be as follows: /Android/data/com.playdigious.deadcells.mobile/files/. Inside this folder there are usually files with the extension .sav or similar binary files containing information about the passage.
It is worth noting that the package name com.playdigious.deadcells.mobile is a unique identifier of the mobile version from the publisher Playdigious. If you are using a different build or port, the folder name may be different, but the path structure will remain the same. In some cases, files may be additionally encrypted or packaged into an archive that the game unpacks upon startup.
โ ๏ธ Warning: Directly editing save files in this folder without creating a backup copy may result in complete loss of progress. The game may not start if the file checksum does not match the expected one.
For ease of navigation, use the built-in Files application or third-party managers like Total Commander or ES Explorer. Simply enter the path into the address bar or navigate through the folders manually. If you see files, but cannot copy them, check the permissions of the manager application in the system settings.
Scope Storage limitations in Android 11, 12, 13 and later
With the release of Android 11, Google introduced a mechanism Scoped Storage (Isolated storage), which radically changed the rules for accessing the file system. Now ordinary file managers by default do not have the right to enter the directory /Android/data/. When you try to navigate, you will see an empty folder or an access denied message, even if the files are physically present there.
This is done to protect user data from malware and accidental deletion of system-critical files by third-party utilities. However, for legitimate tasks, such as saving backups Dead Cells, this creates serious obstacles. The standard explorer simply โdoes not seeโ the contents of the game folder, considering it the private territory of the application.
To bypass this restriction without root access, you can use the special capabilities of the system. Some advanced file managers, for example Mixplorer or new versions Solid Explorer, can request special permission through the system dialog SAF (Storage Access Framework). When you go to a folder Android/data such an application will show a "Use this folder" button or a similar prompt.
- ๐ Install a file manager that supports SAF, such as Mixplorer or CX File Explorer.
- ๐ When you go to
/Android/dataconfirm the provision access in the system window. - ๐พ Find the folder
com.playdigious.deadcells.mobileand copy the files to external media. - ๐ To restore, simply return the files to the same directory, confirming write permissions.
If your file manager does not support working with SAF, access the files will remain closed. In this case, the only legal way is to use a computer and USB debugging, which we will discuss in the following sections. Do not try to use old versions of explorers, they simply will not work correctly on new systems.
Access via root access and system conductors
Having superuser rights (root) on the device removes almost all restrictions of the Android file system. With root access, you become the full owner of the device and can read, write and change any files, including protected system partitions and private application data. This is the most reliable way to manage saves Dead Cells.
To work with files, you will need a specialized file manager that can work with root privileges. The leaders in this niche are Root Explorer, Solid Explorer (with the root function enabled) and Mixplorer. After granting access rights in the application settings, you will be able to freely access /Android/data/com.playdigious.deadcells.mobile/ without any system restrictions.
In addition, with root access you get access to a full backup through utilities such as Titanium Backup or Swift Backup. These applications can upload not only save files, but also the cache, settings and the APK of the game itself into one archive. Restoring from such a copy occurs in one click, which is ideal for transferring progress between devices with root access.
sucd /data/data/com.playdigious.deadcells.mobile/files
ls -la
For those who prefer a console, access through a terminal with root access allows you to execute commands directly. The command su requests superuser rights, after which you can navigate the file system using standard Linux commands. This is especially useful for scripted automation of backups.
โ ๏ธ Attention: Obtaining root access will void the warranty on the device and may disrupt the operation of banking applications and games with anti-cheat. Dead Cells usually does not have a strict anti-cheat, but be careful when modifying system files.
Before rooting, be sure to unlock the bootloader and make a full backup of your data via Fastboot or custom recovery, as the unlocking process often erases all data from the device.
Using ADB to extract saves without Root
If you don't have root access, but don't want to put up with the limitations of Scoped Storage, this tool comes to the rescue ADB (Android Debug Bridge). This is an official Google utility for developers that allows you to control your device from your computer via a USB cable. With its help, you can extract files from protected directories if the application does not prohibit backup in its manifest.
First, you need to enable โUSB Debuggingโ in the developer menu on your smartphone. Connect the device to the PC, install the ADB drivers and check the connection with the command adb devices. If the device is listed, you can begin retrieving data. The command adb pull allows you to copy files from your phone to your computer.
The complete command for copying the save folder Dead Cells will look like this:
adb pull /sdcard/Android/data/com.playdigious.deadcells.mobile/files/ C:\DeadCells_Backup\
Please note that in modern versions of Android direct ADB access to /sdcard/Android/data can also be limited for third party applications, but often works for ADB itself running with shell rights. If the command returns an access error, try using the command adb backupthat creates a full backup of the application:
adb backup -f deadcells.ab -noapk com.playdigious.deadcells.mobile
The resulting file .ab can be unpacked on your computer using utilities ABE (Android Backup Extractor) or online converters to get save files from there. This method is a little more complicated, but guarantees that you will receive data even with strict security settings.
- ๐ Connect your smartphone to the PC with a high quality cable for a stable connection.
- ๐ป Install Platform Tools (ADB and Fastboot) on your computer.
- ๐ Allow debugging on your smartphone screen the first time connection.
- ๐ Use the pull or backup command to extract data.
What to do if ADB does not see the device?
Make sure that the ADB Interface drivers are installed. Try a USB port or cable. In the developer menu, enable the "USB Debugging (Security Settings)" option if available. Restart the ADB server with the command adb kill-server and adb start-server.
Save file structure and editing
Save files Dead Cells have a specific structure that differs from simple text configs. These are usually binary files that are difficult to read in a regular notepad. Understanding the structure helps to avoid mistakes when manually restoring or transferring data between different versions of the game.
In the folder files you can find several types of files. Basic data about the passage, open weapons and cells is often stored in a file with a name like save.dat or player_data. Separately, files for control settings and graphical options can be stored, which usually have the format .json or .xml and can be edited.
To view and edit binary save files you will need HEX editor. apps like HxD (for Windows) or Hex Editor (for Android) allow you to view the contents of a file in hexadecimal format. However, changing values at random is dangerous: the game uses checksums to check the integrity of files.
| File type | Extension | Editable | Purpose |
|---|---|---|---|
| Main saving | .dat /.bin | Difficult (Hex) | Progress, inventory, biomes |
| Game settings | .json /.xml | Easy (Text) | Control, graphics, sound |
| Resource cache | .cache | No | Temporary data, textures |
| Error logs | .log | Read only | Failure diagnostics |
If you plan to edit the number of cells or open drawings, it is better to use ready-made trainers or mods, if they are available for the mobile version, than to edit the HEX code manually. A single byte error can make the save file unreadable and the game will prompt you to start over.
Always make a copy of the original file before any editing. Name it, for example, save_backup_original.dat to be able to roll back changes in case of failure.
Synchronization via the cloud and cross-platform progress
Manually copying files is a reliable but time-consuming method. The developers Dead Cells have provided a more convenient way to transfer progress through cloud services. On Android, this is usually integration with Google Play Games, as well as the ability to cross-save with other platforms through your account Playdigious or Motion Twin (depending on the version and updates).
To activate cloud synchronization, launch the game and log into your Google Play account in your profile settings. The game will automatically load your latest save from the cloud the first time you launch it on a new device. It is important to make sure that the progress was successfully uploaded on the old device: this is usually indicated by a cloud icon with an up arrow in the pause or profile menu.
Cross-platform transfer (for example, from PC to Android or from iOS to Android) is more difficult due to differences in game versions and ecosystems. Cross-save often requires entering a special code on one device and confirming it on the other. This feature may be a paid feature or require the same version of the game (for example, DLC must be purchased on both platforms).
โ ๏ธ Warning: Cloud sync may overwrite your local save with an older version from the cloud if you do not check the last modified date. Always check the save time before confirming the download.
If automatic synchronization does not work, check for game updates and Google Play services. Sometimes a version conflict blocks data transfer. In such cases, manually copying files via ADB or a file manager remains the only working option.
โ๏ธ Check before transferring the save
Common problems and solutions
Users often encounter a situation where the game does not see the save after reinstalling or transferring files. One common reason is an application signature mismatch. If you installed the game from a different source (for example, downloaded the APK from a website rather than from the Play Market), the Android system considers it a different application, even if the package name is the same, and does not give access to the old data files.
Another problem is related to permissions after updating Android. After a major system update (for example, from 10 to 11), folder rights /Android/data may be reset. In this case, the file manager needs to re-request permission to access the storage. The game can also create a new empty data folder, ignoring the old one, if it detects a version mismatch.
If your saves suddenly disappeared, check if the โData Clearingโ function is enabled in the application settings on the system. Some memory optimizers can automatically remove cache and data from games that haven't been played in a while. Add Dead Cells to the exceptions of your antivirus or cleaner.
Why does the game write โThe save file is corruptedโ?
This message appears if the file checksum does not match the expected one. This happens when copying is incorrect (the file was not copied completely), when editing the file in a text editor (the encoding has changed), or when writing to flash memory fails. Try restoring the file from a backup.
Is it possible to transfer saves from iOS to Android?
You cannot directly copy files due to different file systems and encryption. The only legal way is to use the cross-save feature within the game, if the developer has provided such an option for your version of Dead Cells. You will need to create an account and link devices.
Where are the saves stored if the game is installed on an SD card?
Even if the application is moved to the SD card, its private data (including saves) remains by default in the internal storage in the folder /Android/data/. Transferring a game to a card does not automatically transfer the folder with saves, unless this is explicitly specified in the developer settings, which is not typical for Dead Cells.
How to find the version of a Dead Cells save?
The save version is usually tied to the game version. Metadata files or the file name sometimes indicate the patch number. If you try to load a save from a newer version of the game onto an older one, the game will most likely refuse to read it. Update the game to the current version before restoring the backup.
Is it safe to use cheats to edit saves?
In the single-player Dead Cells game, using modified saves does not entail a ban, since the anti-cheat is focused on multiplayer (which in the classical sense is not here). However, you risk breaking the balance and causing the game to become unstable. Always make a backup before experiments.