The transition from Android 6.0 Marshmallow back to Android 5.1 Lollipop is an atypical task that may be required in several cases: incompatibility of critical applications, decreased performance on weak hardware, or the need to use outdated functions removed in new versions. However, such a downgrade is associated with risks: from data loss to complete โbrickingโ of the device. In this article, we will look at when a rollback is justified, how to prepare for the procedure and what tools to use for different brands (Samsung, Xiaomi, Lenovo etc.).
It is important to understand: manufacturers rarely support official firmware rollback. Most instructions are based on unofficial methods that require unlocking the bootloader, installing a custom recovery, and manually flashing it. If you are not confident in your skills, consider alternatives: resetting to factory settings on the current version or using launchers with the interface Lollipop.
Before you begin, check whether your device supports rollback. For example, smartphones on chips Qualcomm Snapdragon 4xx/6xx series often allow downgrading, while devices with Mediatek Helio can block the installation of old firmware due to changes in preloader. Check compatibility on thematic forums (4PDA, XDA-Developers).
When Android rollback is justified: 5 good reasons
Firmware downgrade is a last resort. Consider it only in these cases:
- ๐ Critical software incompatibility: applications for work (for example, 1C, specialized utilities for equipment) no longer support Android 6+.
- ๐ข Reduced performance: on weak devices (1 GB RAM, Quad-core 1.2 GHz) Marshmallow may work slower Lollipop due to background memory optimization
Doze. - ๐ Problems with hardware: some modules (for example, NFC on old Sony Xperia) stop functioning correctly after the update.
- ๐ Removing functions: in Android 6 separate APIs for automation have disappeared (for example,
DeviceAdminwith extended rights). - ๐ ๏ธ Repair or diagnostics: service centers sometimes require a rollback to test hardware components.
If your problem does not fall into this list, try alternatives solutions:
- ๐ฑ Install launcher with interface Lollipop (for example, Nova Launcher with theme Material Design 2014).
- ๐ง Use Xposed Framework (if supported) to modify the current firmware.
- ๐๏ธ Perform reset to factory settings โsometimes this solves performance problems.
โ ๏ธ Attention: Rolling back the firmware will void the warranty (if it is still valid) and may lead to loss of data in the section /data, including photos, messages and accounts. Create a full backup before starting the procedure.
Preparing for a downgrade: what needs to be done in advance
An unpleasant surprise: up to 30% of users trying to roll back the firmware encounter soft-brick (the device does not boot, but responds to PC connection). To minimize risks, follow these steps:
- Check the model and version of the bootloader:
Find out the exact model of the device in
Settings โ About phone โ Model. For example, Samsung Galaxy J5 (2015) SM-J500F and SM-J500H require different firmware. The bootloader version (bootloader) can be seen in thefastbootcommand:fastboot getvar allIf the bootloader version is newer than the target firmware, a rollback may not be possible without patching
boot.img. - Download the correct firmware:
Use only official or verified custom firmware from the forums. For Samsung โ service Sammobile or Frija; for Xiaomi โ Xiaomi Firmware Updater. Pay attention to the region (CSC): firmware for Europe (EU) may not be suitable for Russia (RU).
- Create backup:
Standard backup via
Settings โ Recovery and resetwill not save everything. Use:- ๐ TWRP or OrangeFox Recovery for a full backup of the partition
/data. - โ๏ธ Cloud services (Google Photos, Yandex Disk) for media files.
- ๐ Titanium Backup (requires root) to save applications and their data.
- ๐ TWRP or OrangeFox Recovery for a full backup of the partition
Downloaded the firmware for the exact device model|
Created a backup via TWRP or Titanium Backup|
Checked the compatibility of the bootloader version|
Charged the phone at least 70%|
Installed ADB/Fastboot drivers on the PC -->
Pay special attention to the drivers: without correctly installed ADB and Fastboot drivers, the PC will not recognize the device in firmware mode. For Windows download Google USB Driver or package 15 seconds ADB Installer. On Linux/macOS usually there are enough standard rules udev.
โ ๏ธ Attention: If your device uses FBE (File-Based Encryption), rolling back to Android 5.1 without decrypting the data will lead to its irretrievable loss. Check the encryption inSettings โ Security โ Encryption. On Lollipop the default is FDE (Full-Disk Encryption), with which compatibility is higher.Rollback methods: official vs. unofficial
There are three main downgrade methods, differing in complexity and risks:
Method Suitable devices Risks Necessary tools Official rollback via OTA Samsung, LG (rarely) Minimum (if supported) Smart Switch (Samsung), LG Bridge Firmware via Odin/Flash Tool Samsung, Mediatekdevices Medium (risk of soft-brick) Odin, SP Flash Tool, firmware in format .tar/.zipCustom recovery + manual firmware Any devices with an unlocked bootloader High (hard-brick risk) TWRP, ADB, Fastboot, patched boot.imgLet's look at each method in more detail.
1. Official rollback (if available)
Some manufacturers (for example, Samsung) periodically release rollback firmware to eliminate critical bugs. You can check their availability:
- ๐ Via Smart Switch: connect the device to the PC โ select
RecoveryโUpdate and initialize.- ๐ On the brand support site: enter the device model and look for the section
DowngradeorRollback.If an official rollback is available, follow the manufacturer's instructions. Usually the process is automated and takes 10โ20 minutes. Official rollback firmware saves data in the /data section, but resets the settings to factory settings.
2. Firmware via Odin (for Samsung)
For devices Samsung on chips Exynos or Snapdragon (except for models with a locked bootloader, for example USA version) the utility is suitable Odin. Procedure:
- Download Odin3 (version 3.14.4) and firmware in format
.tar.md5.- Run Odin, connect the phone to mode
Download Mode(pressVolume Down + Home + Power).- In Odin select the firmware files:
BLโ bootloader (bootloader).APโ main firmware.CPโ modem.CSCโregional settings (selectHOME_CSCto save the data).Press Startand wait for completion (do not disconnect USB!).โ ๏ธ Attention: If in progress firmware Odin gives an errorFAIL (Auth), which means the bootloader is locked. Try using patched firmware from the forums or contact the service center.3. Manual firmware via TWRP
Universal method for most devices, but requires an unlocked bootloader and installed TWRP. Instructions:
- Unlock the bootloader (for Xiaomi:
fastboot oem unlock; for Google Pixel: viafastboot flashing unlock).- Install TWRP via
fastboot:fastboot flash recovery twrp-3.6.0-0-your_model.img
fastboot boot twrp-3.6.0-0-your_model.img- In TWRP execut
Wipe โ Format Data(required, otherwise the firmware will not install!).- Flash the firmware ZIP file via
Install.- After installation, flash
Magisk(if you need root) andDisable Force Encryption(if the firmware does not support FBE).What to do if TWRP does not see the internal memory?
If after
Format Datathe internal memory is not mounted in TWRP, connect the device to the PC via USB and transfer the firmware to the SD card (if there is a slot) or use an OTG cable with An alternative is to flash it viaADB Sideload:adb sideload your_rom.zipSolving common errors when rolling back
Even if you follow the instructions exactly, problems may arise. Let's look at the most common ones:
Error Cause Solution Error 7in TWRPIncompatibility of the firmware with the device or bootloader version. Check the model and version bootloaderTry the firmware with the patch.no-verity-opt-encrypt.Stuck on the logo after flashing Incompatible boot.imgor missingvendorsection.Flash separately bootivendorviafastboot:SECURE CHECK FAIL: bootin OdinBootloader is locked (Knox, RMM). Use patched firmware or roll back through a service center. Loss of IMEI after flashing Damaged partition modemorEFS.Restore EFSfrom backup or flash separatelymodem.bin.If the device does not turn on after an unsuccessful rollback:
- Try logging in
Recovery Mode(Volume Up + Power) and flash the firmware again.- If the screen is black, but the PC detects the device as
Qualcomm HS-USB QDLoader 9008, use QFil or EDL Tool for emergency firmware.- For devices on Mediatek try SP Flash Tool with the option
Format All + Download.If after the rollback the sensors (gyroscope, accelerometer) stop working, flash a separate file
persist.imgfrom the original firmware. It can be extracted from the full firmware package using 7-Zip.Alternatives to rollback: how to do without downgrading
Rolling back firmware is a risky procedure. In most cases, the problem can be solved in other ways:
- ๐ Disabling Android 6 functions:
If the brakes are caused
Doze, disable optimization for individual applications inSettings โ Battery โ Menu (โฎ) โ Battery optimization.- ๐ฑ Use of custom firmware:
Firmware type LineageOS 12.1 (based on Android 5.1) offer stability Lollipop with security patches. Minus - an unlocked bootloader is required.
- ๐ฅ๏ธ Emulation of the old version:
To test applications, use emulators (Genymotion, Android Studio) with an image Android 5.1.
- ๐ง Modification of the current firmware:
Using Xposed or Magisk You can disable unwanted features Marshmallow (for example, dynamic rights management).
If the purpose of the rollback is to restore performance, try:
- ๐งน Clear cache via
Recovery Mode(Wipe Cache Partition).- ๐ซ Disable animation in
Settings โ For developers(installAnimation = 0.5x).- ๐ Replace the battery - a worn out battery can cause lags due to frequent mode switching energy saving.
Before rolling back the firmware, always check whether the problem can be solved programmatically. In 70% of cases, alternative methods (reset, custom firmware, Xposed) give the same result without the risk of "bricking".
Risks and consequences of rolling back Android
Downgrading firmware is not a harmless procedure. Here's what to expect:
- ๐ Locking the bootloader: some manufacturers (for example, Huawei, Motorolablock the ability to unlock again after a rollback.
- ๐ก Problems with the network: Android 5.1 may not work with modern standards
VoLTEorWi-Fi 6.- ๐ก๏ธ Security vulnerabilities: Lollipop has not received patches since 2017 Risk of exploits (for example,
Stagefright) is increasing.- ๐ Problems with updates: after a rollback, OTA updates may not arrive or cause installation errors.
The most serious risk is hard-brick (complete failure of the device). This happens if:
- Flash an incompatible one
bootloader.- Interrupt the firmware process at the recording stage
preloader(for Mediatek).- Use firmware with a different type of markup (
mtpartition).If the device has become a "brick":
- For Qualcomm: try QFil or EDL Mode (authorized account required).
- For Mediatek: use SP Flash Tool with the option
Format All + Download.- For Samsung: flash 4-file firmware via Odin with a checkmark
Re-Partition.โ ๏ธ Attention: Manufacturers can change the rollback support policy. For example, Samsung since 2022, it blocks downgrades on devices with Knox 3.7+. Before the procedure, check the current restrictions on the official website or forums.FAQ: Frequently asked questions about rolling back Android 6 to 5
Is it possible to roll back Android without losing data?
Theoretically, yes, if use
HOME_CSCin Odin or flash through TWRP withoutFormat Data. However, in practice, this often leads to errors (for example, endless loading). We recommend creating a full backup and be ready to reset.How do I know if my device supports rollback?
Check:
- Availability of official rollback firmware on the manufacturer's website.
- Reviews on the forums (4PDA, XDA) for your model.
- Bootloader status: if it is locked (
OEM Lock: Yesvfastboot), a rollback is unlikely.What to do if the camera or sound does not work after a rollback?
This is a typical problem with incompatibility
vendorpartition. Solutions:
- Flash separately
vendor.imgfrom the firmware.- Install a custom kernel that supports your hardware.
- Return to Android 6 and use alternative methods (for example GCam for a camera).
Is it possible to roll back Android on a phone with root access?
root access simplify the process (for example, they allow you to create a full backup via Titanium Backup), but do not guarantee a successful rollback. The main thing is an unlocked bootloader. If you block it after getting root (for example, via
fastboot oem lock), rollback will become impossible.How to return Android 6 after an unsuccessful rollback?
If the device still turns on:
- Download the full firmware Android 6 for your model.
- Flash it through Odin/Fastboot with option
Repartition(if available).- If the bootloader is damaged, use service utilities (Samsung: Z3X Box, Mediatek: SP Flash Tool).
If the device does not respond, contact the service center indicating the problem ("failed downgrade").