Resetting an Android smartphone to factory settings is a radical, but sometimes necessary step. It helps eliminate system errors, remove viruses, prepare the device for sale, or simply return it to its former speed. However Incorrect reset can lead to data loss, Google account blocking, or even bricking of the device. In this guide, we will look at all the current reset methods, nuances for different manufacturers (Samsung, Xiaomi, Google Pixel etc.), and also tell you how to avoid common mistakes.
Important understand: resetting through the settings menu and through Recovery Mode are two fundamentally different processes with different consequences for system partitions. The first method saves some data (for example, OS updates), while the second completely overwrites the firmware. We will analyze both options in detail, as well as a rare but effective method of resetting through ADB for advanced users.
If you reset your phone before selling it, do not forget to unlink all accounts (Google, Samsung, Mi Account) and remove the SIM card. Otherwise, the new owner may encounter FRP lock (Factory Reset Protection), which will require you to enter your old password.
1. Preparing to reset: what you need to do before you start
Before you click the "Reset" button, follow a few critical steps. Without backup, you will lose: contacts, SMS, photos, notes, game saves and application settings. Even if the data is stored in the cloud (Google Drive, iCloud), some files may remain only in local memory.
Here is the minimum checklist before resetting:
โ๏ธ Preparing to reset Android
Pay special attention FRP-locking (Factory Reset Protection). If your phone has Google account protection enabled, after resetting you will need to enter your login and password. Samsung, Xiaomi And some other brands add another layer of protection - linking to a branded account (Samsung Account, Mi Account). Deleting an account after resetting via Recovery can lead to a complete blocking of the device without the ability to unlocking.
โ ๏ธ Attention: On phones with Android 12+ and a chip Tensor (for example, Google Pixel 6/7/8), resetting via Recovery may require additional authentication via FastbootCheck this point in the documentation for your model.
If you reset your phone due to viruses, please note that some malicious apps (Triada, XHelper) can survive even a full reset if they have infiltrated the system partitions. In this case, after resetting, it is recommended to flash the device via Fastboot or ODIN (For Samsung).
2. Method 1: Reset through the settings menu (the most secure)
This method is suitable for most situations when the phone turns on and responds to touches. It retains the current firmware version and security updates, but deletes all user data and settings.
Instructions for Android 10โ14 (may differ slightly on custom shells like One UI, MIUI, ColorOS):
Open
SettingsโSystemโReset settings(orAdvancedโReset options).Select
Erase all data (factory reset).If required, enter a PIN, pattern or password.
Confirm the action - the phone will reboot and begin the reset process (will take 5-15 minutes).
On some phones (Samsung Galaxy S22/S23, Xiaomi Redmi Note 12), an option will appear before resetting Clear memory cardMark it only if you want to erase data from microSD - otherwise the photos and files on it will remain untouched.
| Manufacturer | Path to reset in the menu | Features |
|---|---|---|
| Samsung (One UI) | Settings โ General management โ Reset โ Reset data |
Requires password entry Samsung Account after reset, if linked |
| Xiaomi/Redmi/Poco (MIUI) | Settings โ About phone โ Reset settings |
May require binding to Mi Account when you first turn on after a reset |
| Google Pixel (Stock Android) | Settings โ System โ Reset options โ Erase all data |
On models with Tensor reset takes up to 20 minutes |
| Realme/Oppo (ColorOS) | Settings โ Additional settings โ Reset |
Offers to separately erase application data or all data |
โ ๏ธ Attention: On phones with Android 13+ and function Private Compute Core (for example, Google Pixel 7) reset may erase the data used to process voice commands and AI functions. They will have to be downloaded again after the first setup.
If after the reset the phone asks for the password for the old Google account, but you do not remember it, use Google recovery service. For Samsung and Xiaomi additional steps may be required (for example, confirmation via email or SMS).
If the reset is stuck at the "Data Clearing" stage for more than 30 minutes, do not forcefully turn off the phone. Let the process complete (sometimes this happens. takes up to an hour on weak devices).
3. Method 2: Reset via Recovery Mode (for locked phones)
If the phone does not turn on, is locked with a pattern, or is stuck on the logo, a reset via Recovery modewill help: This method overwrites system partitions and can remove OS updates, returning them. device to the original firmware.
To enter Recovery:
Turn off the phone (if it is frozen, hold down the power button for 10-15 seconds).
Press the button combination (depending on the model):
- ๐ฑ Samsung:
Volume up + Power + Bixby(on new models withoutBixbyโ onlyVolume up + Power) - ๐ฑ Xiaomi/Redmi/Poco:
Volume up + Power(hold until logo Mi) - ๐ฑ Google Pixel:
Volume down + Power(select from the menuRecovery Mode) - ๐ฑ OnePlus:
Volume down + Power(hold for 10+ seconds)
- ๐ฑ Samsung:
In the Recovery menu, select Wipe data/factory reset (control - volume buttons, selection - power button).
Confirm the action (Yes โ Delete all user data) and wait for completion.
Select Reboot system now for reboot.
On some phones (Samsung Galaxy A54, Xiaomi 13T) Recovery may be blocked. In this case, a warning will appear asking you to confirm the action via Mi Account or Samsung Account. If you do not remember your account data, resetting via Recovery will not be possible without additional manipulations (for example, flashing the firmware). via Fastboot).
What to do if Recovery does not open?
If the button combination does not work, try:
1. Connect the phone to charge for 10 minutes - sometimes a low battery blocks the entrance to Recovery.
2 Use ADB to force a reboot into Recovery (command: adb reboot recovery).
3. On some Samsung you must first hold down Volume up + Bixbyand then connect the USB cable to the PC (this activates the download mode).
โ ๏ธ Attention: On phones with an unlocked bootloader (bootloader) resetting via Recovery can lead to data loss in the/dataand/cachepartitions, but will not affect custom firmware (for example, LineageOS). If you are using unofficial software, you will have to reinstall it after resetting.
If after resetting via Recovery the phone does not turn on or is stuck on the logo, the system files are probably damaged. In this case, only flashing through Fastboot or proprietary utilities will help (Odin for Samsung, Mi Flash for Xiaomi).
4. Method 3: Reset via ADB (for advanced users)
This method is suitable if standard methods do not work, and the phone still responds to commands. For example, if the sensor does not work, but USB debugging is enabled. To reset via ADB you will need a computer with installed drivers and tools Android SDK Platform-Tools.
Step-by-step guide:
Connect the phone to the PC via a USB cable (preferably original).
Open the command line (
cmdon Windows orTerminalon macOS/Linux) in the folder withplatform-tools.Check the device connection with the command:
adb devicesIf the phone is displayed in the list, you can continue.
Reset one of the commands:
- ๐ Full reset (deletes all data except system updates):
adb shell recovery --wipe_data - ๐ Reset with reboot into Recovery (if you need to clear the cache):
adb reboot recovery
- ๐ Full reset (deletes all data except system updates):
If command adb devices does not show your device:
- ๐ Check if
USB debuggingis enabledSettings โ For Developers. - ๐ Try a different USB cable (cheap cables often do not transfer data).
- ๐ Install drivers for your model (for example, Samsung USB Driver or Xiaomi ADB Driver).
โ ๏ธ Attention: On Android 13+ for commands ADB You may need additional confirmation on your phone (a pop-up window asking for permission). If the screen does not work, this method will not work.
After executing the command, the phone will reboot and begin the reset process. The time depends on the model: on Google Pixel 7 it takes ~10. minutes, on budget Redmi - up to 20 minutes. If the process takes a long time, do not disconnect the cable and do not interrupt work. ADB.
Resetting via ADB is the most flexible method, but requires preliminary configuration (USB debugging is turned on) If USB debugging is disabled and the phone is locked, this method will not work.
5. What to do after the reset: initial setup and data recovery
After a successful reset, the phone will turn on in the initial setup mode, as after purchase. Here it is important to correctly follow several steps to avoid problems in the future:
๐น Step 1: Connecting to Wi-Fi
You will be without Internet. you will not be able to log in Google Account and restore data. If Wi-Fi does not connect, check if the network settings are lost after resetting (sometimes rebooting the router helps).
๐น Step 2: Login to Google Account
Use the same account that was linked before the reset. If you forgot your password, restore it via recovery page Google. On phones Samsung i Xiaomi you will also need to enter your corporate account information.
๐น Step 3: Data recovery
Android will offer to restore data from the backup. Select the most recent copy (check the creation date). Recover:
- ๐ฑ Contacts, calendars, notes (from Google) Account)
- ๐ท Photos (if Google Photos was enabled Google Photos)
- ๐ฎ Data of some applications (if the developer supports backup)
- ๐ง Wi-Fi and Bluetooth settings
๐น Step 4: Checking for updates
After resetting via Recovery, you may need to update the OS. Go to Settings โ System โ Software update and install all available patches. Samsung updates can weigh up to 2-3 GB, so use Wi-Fi.
If after restoring the data the phone starts to slow down, try disabling automatic synchronization for unnecessary applications. To do this, go to Settings โ Accounts. โ Google โ Account synchronization and disable unnecessary options.
๐น Step 5: Installing applications
Do not rush to install all apps at once. Start with the essentials:
- Messengers (WhatsApp, Telegram)
- Banking applications (before installation, check if the requirements have changed) to the Android version)
- Backup applications (Google One, Dropbox)
- Antivirus (for example, Malwarebytes or Bitdefender)
If you reset your phone due to viruses, before installing applications, check their reputation on Google Play (read reviews for last 2-3 months). Some malware disguises itself as popular utilities (for example, flashlights or battery optimizers).
6. Typical reset errors and how to avoid them
Even experienced users sometimes make mistakes that lead to data loss or blocking of the phone. Here are the most common ones and ways to prevent them:
| Error | Consequences | How to avoid |
|---|---|---|
| Reset without unbinding Google Account | FRP lock (requires entering login/password after reset) | Delete account in Settings โ Accounts โ Google before resetting |
| Interruption of reset (turning off the phone) | Corruption of system files, "scrapping" | Wait for the process to complete (even if it lasts >30 minutes) |
| Reset via Recovery on a phone with custom firmware | Loss of root access, system failure | Use special commands for custom firmware (for example, fastboot flash system) |
| Ignoring backup | Loss of photos, contacts, messages | Use Google Photos, SMS Backup & Restore and cloud services |
| Reset on a phone with a dead battery | Shutdown during the process, data corruption | Charge the phone to at least 50% before resetting |
One of the most insidious errors is resetting the phone. with the "Find device" function enabled (Find My Device).If you have not disabled it in advance, after resetting the phone may remain linked to your account, and the new owner will not be able to activate it:
- Go to the website Find My Device.
- Select your device and click
Remove device. - Only after that perform a reset.
Another one a common problem - loss of IMEI after a reset on some models Xiaomi i Realme. This happens due to an error in the firmware that erases the modem data. If after the reset the network is lost:
- ๐ถ Check IMEI by typing
*#06#. - ๐ถ If IMEI is missing, restore it via
Engineering Mode(this requires root access) or contact the service center.
โ ๏ธ Attention: On phones with Android 14 i chip Tensor G3 (for example, Google Pixel 8), a reset may erase the data of Titan M2 โthe secure chip for storing cryptographic keys. This will lead to data loss in some banking applications (for example, SberBank Online or Tinkoff). Before resetting, export backups of such applications.
7. Reset on locked phones: bypass FRP and pattern key
If you have forgotten the pattern or password, and resetting via Recovery requires entering your account data - there are several legal unlocking methods. Important: these methods only work on your phone (bypassing someone elseโs lock is illegal!).
๐ Method 1: Unlocking via Find My Device (for Google Account)
- Go to Find My Device from your PC.
- Select a locked phone.
- Click
Lock deviceand set a new password. - Use this password to unlock phone.
๐ Method 2: Bypass FRP on Samsung (via Samsung Account)
- ๐ฑ Connect your phone to Wi-Fi during the initial setup.
- ๐ฑ Enter any email in the field for Google Account, then click on link
Forgot your password?. - ๐ฑ You will be redirected to the browser - open Samsung Account and log into your account.
- ๐ฑ Return to setting up your phone - the lock will be removed.
๐ Method 3: Using Fastboot to bypass (for advanced users only)
On some phones (Xiaomi, Redmi) you can remove the FRP lock through commands Fastboot:
fastboot oem clean_frp
However, this method requires an unlocked bootloader and may result in loss of warranty. Look for detailed instructions on forums like 4PDA for your model.
โ ๏ธ Attention: Bypassing FRP on phones with Android 12+ has become more difficult due to tightened security. On new Samsung Galaxy S23 and Google Pixel 7/8 some bypass methods stopped working. If you are not sure of your actions, contact the service center.
If none of the methods worked, the last option remains: flashing the phone via Fastboot or Odin with complete clearing of all partitions. This will remove the FRP lock, but will require skills in working with firmware.
8. Alternatives to a full reset: when you can do without drastic measures
Before resetting your phone to factory settings, check if the problem can be solved using gentler methods. Here are some alternatives:
๐ ๏ธ 1. Clearing the application cache
If the phone is slow, but is not infected with viruses, try clearing the cache for individual applications:
- ๐ฑ Go to
Settings โ Applications. - ๐ฑ Select the problematic application (for example, Facebook or Instagram).
- ๐ฑ Click
Storage โ Clear cache.
๐ ๏ธ 2. Reset network settings
If there are problems with the Internet or Bluetooth:
- ๐ก Go to
Settings โ System โ Reset โ Reset network settings. - ๐ก Confirm the action - this will reset the saved Wi-Fi, mobile network data and Bluetooth pairs.
๐ ๏ธ 3. mode
If the phone is buggy due to a third-party application:
- ๐ Press and hold the power button until the shutdown menu appears.
- ๐ Press and hold the option
Disableโyou will be prompted to go toSafe Mode. - ๐ Only system applications work in this mode. Remove suspicious apps and reboot.
๐ ๏ธ 4. Recovery via Google Photos or Smart Switch
If you just want to transfer data to a new phone:
- ๐ฑ For Samsung use Smart Switch (transfers contacts, messages, photos).
- ๐ฑ For other brands - Google Photos (photos), Google Contacts (numbers), SMS Backup & Restore (messages).
๐ ๏ธ 5. Flashing without data loss
If the problem is in the firmware (for example, the phone constantly reboots), you can try updating the OS without a full reset:
- ๐ฑ For Samsung: use Samsung Smart Switch (software update).
- ๐ฑ For Xiaomi: download the firmware from official website and update via
Software update. - ๐ฑ For Google Pixel: use OTA updates or
Android Flash Tool.
If none of these methods helped, then you should resort to a full reset. But in 70% of cases the problem is solved without radical measures.
Before resetting, always try softer methods: clearing the cache, safe mode or network reset. A hard reset is the last chance, not the first solution.
FAQ: Frequently asked questions about resetting Android
๐น Is it possible to reset a phone without losing data?
No, a full reset always deletes user data (photos, messages, applications). However, you can:
- Create a backup via Google Account or Smart Switch.
- Copy files to your PC or flash drive.
- Use alternative methods (clearing cache, resetting