Did your smartphone stop turning on after falling, charging or updating? The screen remains black, but important photos, messages or documents are stored in memory? The situation is familiar to many - according to statistics 37% of users lose access to data due to hardware failures, another 22% - after unsuccessful firmware. Fortunately, even if Android shows no signs of life, there are chances to get the information back.

In this article - 5 proven ways to extract data from a non-working phone, from simple (connecting to a PC) to extreme (direct reading of the memory chip). We will look at when it helps Recovery mode, how to bypass the screen lock through ADB, and why sometimes the only way out is to contact the laboratory. Important: methods differ in complexity and risks, so start with the safest ones.

We warn you right away: if the phone physically damaged (for example, after water or a strong shock), some methods may aggravate the problem. In such cases, it is better to immediately go to the section about chip-off method or professional help.

1. Extracting data via Recovery Mode (if the phone responds to buttons)

If the smartphone does not turn on, but vibrates when charging or responds to pressing the buttons, try logging in recovery mode (Recovery Mode. This method works on most devices, including Samsung, Xiaomi, Google Pixel other models with an unlocked bootloader.

In Recovery you can:

  • ๐Ÿ“ Copy files to an SD card (if it is installed).
  • ๐Ÿ”„ Reset settings to factory defaults (but this will delete all data!).
  • ๐Ÿ–ฅ๏ธ Connect to the PC via ADB sideload for backup.

How to enter Recovery:

  1. Turn off the phone (if it freezes, hold down the power button for 10+ seconds).
  2. Hold the combination of buttons:
    • Samsung: Power + Volume up + Bixby (or Home on older models).
    • Xiaomi/Redmi: Power + Volume Up.
    • Google Pixel, OnePlus: Power + Volume Down.
  • Hold the buttons for 10-15 seconds until the logo or Recovery menu appears.
  • Make sure that the phone is detected as a drive in the PC|Copy data to the SD card (if available)|Use ADB for backup|Do not select "Wipe Data" unless necessary-->

    If the Recovery menu does not appear, it means the bootloader is locked or the firmware is damaged. In this case, proceed to the next method.

    โš ๏ธ Attention: On some phones (for example, Huawei or Honor) Recovery Mode may be disabled by the manufacturer. Before trying, check the model compatibility on the forums (for example, 4PDA or XDA Developers).

    2. Using ADB and Fastboot (for an unlocked bootloader)

    ADB (Android Debug Bridge) is a debugging tool that allows you to control your phone through your computer. If you previously enabled USB debugging in the developer settings, the chances of saving your data are high. The method works even if the screen does not turn on, but the phone is detected by the PC.

    What you will need:

    • ๐Ÿ’ป Computer with ADB and Fastboot installed.
    • ๐Ÿ”Œ USB cable (preferably original).
    • ๐Ÿ“ฑ Phone with an unlocked bootloader (on some models, unlocking via fastboot oem unlock).

    Instructions is required:

    1. Connect the phone to the PC and open the command line (cmd in Windows or Terminal on macOS/Linux).
    2. Check whether the PC sees the device:
      adb devices

      If the serial number appears in the response, you can continue.

    3. Copy the data to the computer (for example, all photos from the folder DCIM):
      adb pull /sdcard/DCIM/ C:\Backup\Photos
    4. To back up all data, use:
      adb backup -apk -obb -shared -all -f C:\Backup\android_backup.ab

      (Note: on new versions of Android, confirmation may be required on the phone, which is impossible with a black screen.)

    If adb devices does not show the device, try rebooting the phone in Fastboot Mode (button combination as for Recovery, but with hold Volume down) and enter:

    fastboot devices
    ๐Ÿ’ก

    If ADB does not see the phone, try another USB port or cable. Sometimes disabling driver signature in Windows helps (via bcdedit /set testsigning on in the command line from the administrator).

    โš ๏ธ Attention: On phones with a locked one. bootloader (for example Samsung with Knox) ADB commands may not work. Also, the method is useless if USB debugging has not been enabled in advance.

    3. OTG drive

    If your phone supports microSD memory cards or OTG adapters, this method may be the simplest solution. Many users store photos and documents on an SD card, which is easy to remove and connect to another device.

    How to proceed:

    1. Turn off the phone (if it is frozen, remove the battery, if it removable).
    2. Take out the SIM card tray and check if microSD is installed. If yes, remove it.
    3. Insert the card into another phone, tablet or card reader connected to the PC.
    4. Copy the data to a reliable medium.

    If there is no SD card, but the phone supports OTG (for example, Samsung Galaxy, Xiaomi Redmi Note), try:

    • ๐Ÿ”Œ Connect an OTG adapter with a flash drive (FAT32!).
    • ๐Ÿ“ฑ Press the combination of buttons to enter Safe Mode (usually Power + Volume down).
    • ๐Ÿ–ฅ๏ธ If the phone turned on in safe mode, copy the files to the flash drive.
    Phone model MicroSD support OTG support Notes
    Samsung Galaxy S22 No Yes Requires USB-C โ†’ USB-A adapter
    Xiaomi Redmi Note 11 Yes (hybrid slot) Yes SD up to 1 TB, OTG up to 256 GB
    Google Pixel 7 No Yes NTFS/FAT32 only
    Huawei P50 Yes (NM Card) Yes Own card format

    If the phone does not respond to OTG, the USB controller may be damaged. In this case, only chip-off method.

    Internal will help. memory|MicroSD card|Cloud services (Google Drive, Yandex.Disk)|I donโ€™t know|Another option-->

    4. JTAG connector: direct memory access (for advanced users)

    JTAG (Joint Test Action Group) is a debugging interface that is used for low-level access to phone memory. The method is complex, but it allows you to extract data even from completely dead devices (if the chip is not damaged eMMC or UFS).

    When JTAG is needed:

    • ๐Ÿ’€ The phone does not respond to charging and buttons.
    • ๐Ÿ”ง Damaged bootloader or firmware.
    • ๐Ÿ“ฑ The screen is broken, but the phone is detected as Qualcomm 9008 or MTK Preloader in the device manager.

    What you will need:

    • ๐Ÿ”ง Soldering iron and solder (for connections to JTAG contacts).
    • ๐Ÿ’ป Programmer (for example, RIFF Box, Easy-JTAG).
    • ๐Ÿ“„ Firmware or memory dump for your model.

    Step-by-step guide (simplified):

    1. Disassemble the phone and find the JTAG contacts (usually labeled as TCK, TMS, TDI, TDO, GND).
    2. Solder the wires to the programmer according to the diagram (it is unique for each model!).
    3. Connect the programmer to the PC and run the software (for example, JTAG Manager).
    4. Read the memory dump into a file (the process may take several hours).
    5. Use Hex editor (for example, HxD) or specialized tools (UFS Explorer) to extract files.
    Where to find JTAG schemes for your model?

    JTAG connection diagrams are usually published on forums like 4PDA or XDA Developers. Look for a topic with the model name + "JTAG pinout". For example: "Samsung A52 JTAG pinout". data-i="168">and Qualcomm And Mediatek the schemes are different!

    JTAG does not work on phones with hardware encryption (for example, Google Pixel 6+ or Samsung Galaxy S21+ with File-Based Encryption enabled). In such cases, the data will not be accessible without the encryption key.

    โš ๏ธ Attention: Incorrect JTAG connection may permanently damage the motherboard. If you have never soldered microelectronics, it is better to contact a service center.

    5. Chip-off method: removing the memory chip

    If all the previous methods did not work, all that remains is last resort physically removing the memory chip (eMMC or UFS) and reading it on the programmer. This method is used in data recovery laboratories and requires special equipment.

    When a chip-off is needed:

    • ๐Ÿ’€ The phone shows no signs of life (no vibration, does not heat up).
    • ๐Ÿ”ฅ The motherboard is damaged (for example, after a short circuit).
    • ๐Ÿ”’ Hardware encryption is enabled, but you know the password.

    How the process happens:

    1. The phone is disassembled, and the memory chip is carefully removed from the board (usually marked as KLMG, H9H or THGB).
    2. The chip is connected to the programmer (for example, PC-3000 Flash or DeepSpar Disk Imager).
    3. A complete memory dump is read (can take from 2 to 12 hours depending on the volume).
    4. Data is restored using specialized software (for example, UFS Explorer or R-Studio).

    The cost of services in laboratories: from 5,000 to 30,000 rubles (depending on the model and complexity). For example:

    • Samsung Galaxy S10 (UFS 2.1) - ~10,000 rubles.
    • Xiaomi Redmi 9 (eMMC 5.1) - ~7,000 rub.
    • iPhone (we are not considering, because this is a different architecture).

    Where to look for laboratories:

    • ๐Ÿ” 2GIS or Yandex.Maps on request "data recovery from telephones."
    • ๐Ÿ› ๏ธ Service centers with equipment PC-3000 or Flash Extractor.
    • ๐Ÿ“ฆ Postal services (for example, Data Recovery Lab accepts devices in Russia).
    ๐Ÿ’ก

    Chip-off is the only way to return data from a phone that does not turn on, is not detected by the PC and has a damaged board. However, the method does not guarantee 100% recovery, especially if the memory is physically damaged (for example, after a fall or water).

    โš ๏ธ Attention: If encryption was enabled on the phone (for example, through File-Based Encryption in Android 10+), a password or PIN will be required to decrypt the data. Without it, the files will be inaccessible even after reading the chip.

    6. How to avoid data loss in the future

    The best way to avoid losing data is take care of backups in advance. Here's what you can do today:

    Automatic backups:

    • โ˜๏ธ Enable synchronization with Google Account:
      Settings โ†’ Accounts โ†’ Google โ†’ Account synchronization

      This will save contacts, calendar and some settings.

    • ๐Ÿ“ Use Google Photos to automatically upload photos and videos.
    • ๐Ÿ”„ Set up backup to Mi Cloud (for Xiaomi) or Samsung Cloud.

    Manual copies:

    • ๐Ÿ’ป Connect your phone regularly to your PC and copy important files.
    • ๐Ÿ”Œ Use applications like Swift Backup (requires root) or Titanium Backup.
    • ๐Ÿ“ฑ For corporate data, set up MDM solutions (for example, Microsoft Intune).

    Hardware measures:

    • ๐Ÿ›ก๏ธ Install a shock-proof case and a film on the screen.
    • ๐Ÿ’ง Avoid moisture (even โ€œwaterproofโ€ phones do not last forever).
    • ๐Ÿ”‹ Do not use uncertified chargers.
    ๐Ÿ’ก

    If your phone starts to fail (reboot spontaneously, slow down), make a backup copy right away! This may be the first sign of memory or battery failure.

    Frequently asked questions

    Is it possible to recover data if the phone drowns?

    Yes, but the chances depend on the time spent in water and the type of liquid. If the phone stayed in fresh water for less than 30 minutes and did not turn on after that - do not try to charge it! Immediately:

    1. Remove the battery (if removable).
    2. Rinse the board isopropyl alcohol (90%+) or distilled water.
    3. Dry in rice or with silica gel for 2-3 days.
    4. Contact a service for ultrasonic cleaning and checking the circuits.

    If the phone turned on after water, but then stopped, most likely the contacts have oxidized. In this case, only the chip-off method will help.

    The phone turns on, but the screen is black. How to copy data?

    If the phone vibrates or makes sounds when turned on, but the screen does not work:

    1. Connect the phone to the PC via USB and check if it is recognized as a drive.
    2. If yes, copy the files manually.
    3. If not, try connect mouse via OTG (on some phones this works for blind navigation).
    4. Use ADB (if debugging was enabled) or MiraCast to transfer the screen to TV (if the phone supports wireless transmission).

    If the screen is broken, but there is an image, connect the phone to the monitor via USB-C โ†’ HDMI adapter (works on many Samsung i Huawei).

    How much does data recovery cost in the laboratory?

    The cost depends on:

    • Memory type (eMMC cheaper, UFS 3.1 more expensive).
    • Phone model (for example, iPhone recovery is more difficult than Xiaomi).
    • Complexity of damage (logical errors vs. physical defects).

    Average prices in Russia (2026):

    • Logical errors (for example, firmware failure) - 3 000โ€“8,000 rub.
    • Chip-off (eMMC) โ€” 7,000โ€“15,000 rub.
    • Chip-off (UFS) โ€” 12,000โ€“30,000 rub.
    • Recovery after water/shock โ€” 5,000โ€“20,000 rubles (plus the cost of repairing the board).

    In some cases, laboratories charge an advance payment for diagnostics (1,000โ€“3,000 rubles), which later is included in the cost of the work.

    Is it possible to recover data from a phone that has burned down?

    If the phone physically burned (the body is melted, there is a burning smell), the chances are minimal. However, in some cases:

    • If only the board burned out, but the memory chip (eMMC/UFS) is intact - it can be used. remove and read on the programmer.
    • If the battery burns out, but the board is not damaged, the phone can work after replacing the battery.

    In case of severe damage (for example, after a fire), restore the data impossible โ€”memory chips melt at temperatures above 150ยฐC.

    How to protect data on your phone from loss?

    In addition to regular backups, follow these tips:

    • ๐Ÿ” Enable device encryption (but remember the password!):
      Settings โ†’ Security โ†’ Phone encryption
    • โ˜๏ธ Use Google One or iCloud for automatic backup.
    • ๐Ÿ“ฑ Install a remote management application (for example, Find My Device from Google) to erase data in case of theft.
    • ๐Ÿ”‹ Monitor the health of the battery (if it is swollen, immediately replace!).
    • ๐Ÿ› ๏ธ Once every six months, check the memory status using AIDA64 or AccuBattery.

    If the phone starts to "glitch" (spontaneous reboots, application errors) - this is the first signal to create a backup!