Forgot your home Wi-Fi password, but it's saved on your phone? Or want to delete the network from your device's memory and reconnect? There are several ways to do this on Android, from standard settings to hidden features for advanced users. The main problem: producers (for example, Samsung, Xiaomi or Huawei) often modify the interface, so the path to the settings may differ. This article contains current methods for all Android versions, including Android 14 and shells One UI, MIUI, EMUI.
Some users mistakenly believe that deleting a network from the list automatically clears the password. In fact, Android stores connection data in secure storage. Before a hard reset. We'll cover how to completely clear data—from a simple deletion via the menu to manually editing system files (for experienced users). You'll also learn what to do if the "Forget Network" button is inactive or missing.
⚠️ AttentionAfter removing the password, your phone will lose network access. Make sure you have an alternative internet connection (mobile data, another Wi-Fi network) to re-authorize.
1. Standard method: deleting the network via Wi-Fi settings
The easiest method is to use Android's built-in tools. It works on most devices, including Samsung Galaxy, Google Pixel and smartphones with "pure" Android. Advantage: does not require superuser rights (root) and takes less than a minute.
Instructions:
- Open
Settings→Wi-Fi(orConnections→Wi-Fion Samsung). - Find the desired network in the list and tap on its name (not on the switch!).
- Select an option
Forget,Delete networkorForget this network(the name depends on the firmware). - Confirm the action in the dialog box.
☑️ Check before deleting a network
⚠️ Attention: On some devices (eg. Xiaomi With MIUI 14) The "Forget Network" option may be hidden behind an additional menu. In this case, hold your finger on the network name for 2-3 seconds – a context menu with the desired option will appear.
Why might the "Forget" button not work?
- 🔒 Corporate networks (with certificates)
EAP-SIMor802.1x): require removal throughSettings → Security → Credential Storage. - 📱 Firmware with limitations: some custom OS (eg. ColorOS on Oppo/Realme) block the removal of "system" networks.
- 🔄 Wi-Fi cacheIf the network disappears from the list but connects automatically, clear the application cache.
Settings(Settings → Apps → Settings → Storage → Clear Cache).
2. Removing the password via the "Saved Networks" menu (hidden section)
On some devices (especially with Android 10–13) The list of saved networks is hidden deep within the menu. This method is useful if the standard method doesn't work or the network isn't visible in the main list.
How to find hidden networks:
- Go to
Settings → Wi-Fi. - Tap the three dots (⋮) in the upper right corner or swipe down on the list of networks.
- Select
Additionally,Advanced settingsorNetwork management. - Find the section
Saved networks(on Huawei can be calledManaging known networks). - Select the desired network and press
DeleteorForget.
What should I do if there is no "Saved Networks" section?
On some firmware (for example, FlymeOS on Meizu) this section is missing. An alternative is to use ADB (see method 4) or applications like WiFi Password Viewer (requires root).
| Manufacturer | Path to saved networks | Peculiarities |
|---|---|---|
| Samsung (One UI) | Settings → Connections → Wi-Fi → ⋮ → Advanced settings → Manage networks | A PIN or fingerprint may be required for verification. |
| Xiaomi/Redmi (MIUI) | Settings → Wi-Fi → Saved Networks (swipe down) | On MIUI 14+, the "Forget" button appears after a long tap. |
| Google Pixel (Stock Android) | Settings → Network & Internet → Wi-Fi → Saved Networks | The most direct route, without additional menus |
| Huawei/Honor (EMUI) | Settings → Wireless & networks → Wi-Fi → Manage known networks | Requires Face ID/fingerprint verification |
3. Reset network settings (nuclear method)
If the previous methods did not work, you can reset all network settings to factory defaults. This will delete not only Wi-Fi passwords, but also data about Bluetooth devices, VPNs, and reset mobile internet settings (APN). Use this method as a last resort!
Instructions:
- Open
Settings → System → Reset settings(on Samsung:General Management → Reset). - Select
Reset network settingsorReset Wi-Fi, mobile network, and Bluetooth. - Confirm the action (you may be asked to enter your lock screen PIN).
- After rebooting, all saved networks will be erased.
⚠️ Attention: On devices with Android 12+ resetting the network may also delete data about eSIM and settings HotspotBefore the procedure, save backup copies of important configurations (for example, screenshots of APN settings).
4. Removing a password via ADB (for advanced users)
A method for those who are ready to use ADB (Android Debug Bridge). Advantage: works even if the phone interface is locked or modified. Flaw: requires connection to PC and switching on USB debugging.
Step-by-step instructions:
- Turn on
Developer modeon the phone:- Go to
Settings → About phone. - Tap the item 7 times
Build number(orMIUI versionon Xiaomi). - Return to
Settings → System → Developer Optionsand activateUSB debugging.
- Go to
Note: the first command clears the Wi-Fi cache, the second clears the settings, and the third reboots the device.adb shellpm uninstall -k --user 0 com.android.wifitrackerlib
pm clear com.android.providers.settings
reboot
⚠️ Attention: On Some ADB commands are limited on Android 13+. If you see an error not allowed, try an alternative command:
adb shell cmd wifi forget-network <SSID> replaceable
Where <SSID> — the name of your network in quotation marks (for example, "my_wifi").
5. Manually editing the wpa_supplicant.conf file (root only)
This method is suitable for users with superuser rights (root). Risk: Incorrectly editing system files may result in loss of Wi-Fi connection. Advantage: Allows you to remove a password selectively without affecting other networks.
Instructions:
- Install a file manager with support root (For example, Root Explorer or Solid Explorer).
- Follow the path:
/data/misc/wifi/WifiConfigStore.xmlor (on older versions of Android):
/data/misc/wifi/wpa_supplicant.conf - Find the block with the name of your network (parameter
ssid="...") and delete it entirely. - Save the file and restart your phone.
- 🔓 WiFi Password Viewer (shows and allows you to delete saved passwords, requires root).
- 📱 Network Signal Guru (analyzes networks and allows you to manage connections, works without root on Android 10–12).
- 🔄 Reset Wi-Fi, Mobile & Bluetooth (an alternative to resetting settings, but with more flexible options).
- 📲 On Xiaomi With MIUI: disable the function
Auto-connect to known networksin the Wi-Fi settings. - 🔗 On Huawei: use
HiSuiteon a PC to manage networks (requires account authorization) Huawei ID). - 🛠️ On custom firmware (for example, LineageOS): password removal is available via
Settings → Wi-Fi → Advanced → Manage networks. - On Android 9 and below: use file
wpa_supplicant.conf(see method 5). - On Android 10+: without root This is not possible due to security restrictions. Apps like WiFi Password Viewer will not work.
- Exception: on Samsung With One UI The password can be viewed in
Settings → Connections → Wi-Fi → ⋮ → Advanced settings → QR code(scan it with another device).
What does the network entry look like in wpa_supplicant.conf?
Example block for a network named "home_wifi" and password "12345678":
network={ssid="home_wifi"
psk="12345678"
key_mgmt=WPA-PSK
priority=1
}
Remove the entire block from network={ to }.
⚠️ Attention: On Android 9+ file wpa_supplicant.conf may be encrypted or replaced with binary format. In this case, use applications like WiFi Password Recovery (requires root).
6. Alternative methods: apps and bypassing restrictions
If standard methods don't work, you can use third-party tools. Important: many applications require root-rights or have limitations on new versions of Android.
Popular apps:
Bypassing manufacturer restrictions:
FAQ: Frequently asked questions about deleting Wi-Fi passwords on Android
Is it possible to find out the Wi-Fi password saved on the phone before deleting it?
Yes, but the methods depend on the Android version:
Why does my phone automatically reconnect to a network after deleting it?
This is due to the function Auto-connection or Smart Wi-Fi (on Xiaomi). Turn it off:
- Go to
Settings → Wi-Fi → ⋮ → Advanced. - Disable options
Auto-connection to open networksAndNotifications about new networks. - On Samsung also check
Settings → Connections → Wi-Fi → ⋮ → Smart Switch.
If the problem persists, clear the application cache. Settings (see method 1).
How do I remove the Wi-Fi password on a phone with a work account (corporate network)?
Corporate networks (with EAP-SIM, 802.1x) are removed differently:
- Go to
Settings → Security → Credential Storage. - Find the network certificate (usually with the organization name) and delete it.
- Go back to your Wi-Fi settings and forget the network in the standard way.
⚠️ If the network is added via MDM (device management system), its removal may be blocked by security policies. Contact your IT department.
Will my Wi-Fi password be deleted after I reset my phone to factory settings?
Yes, full reset (Settings → System → Reset → Erase all data) will delete all saved Wi-Fi passwords, as well as:
- Google and other app accounts;
- Photos, videos and documents (if no backup has been made);
- Screen, sound and notification settings.
Use this method only if other options have failed. Resetting your Google account won't delete passwords stored in your Google account (if syncing is enabled). Your networks may be restored after you sign in to your account again.
Is it possible to remove a Wi-Fi password without accessing the phone settings (for example, if the screen is locked)?
Without unlocking the screen or root- this is impossible. Alternative options:
- 🔧 ADB: if the phone is turned on
USB debugging, connect it to your PC and use the commands from method 4. - 📱 Find My Device: on Samsung or Google Pixel You can reset the settings remotely through the service Find My Device (but this will delete all data!).
- 🛠️ Service center: If your phone is under warranty, contact an authorized service center—they can reset the settings without losing data (for some models).