Manually Connect to Wi-Fi on Android: Hidden Networks, QR Codes, and Alternative Methods

Connecting to Wi-Fi on a smartphone usually takes a few seconds: select a network from the list, enter the password, and you're ready to go. But what if the network you want not displayed in available connections? Or if you're in a place with Wi-Fi hidden for security reasons (for example, in an office or hotel)? In such cases, it is necessary manually adding a network — a procedure that raises questions even among experienced users.

In this article, we will look at all the methods for manually connecting to Wi-Fi on Android — from standard addition through settings to use QR codes and teams ADBYou will learn how to enter network data manually, what security settings to choose, and what to do if your smartphone stubbornly refuses to connect to the hidden network, despite the correct settings. The material is relevant for all versions of Android, including Android 14 And One UI 6.0 (Samsung).

Why might a Wi-Fi network not appear in the list?

Before moving on to manual addition, it is important to understand why the network not visible in the standard list. The reasons may be related to both the router and the smartphone:

  • 🔒 Hidden network (SSID Broadcast disabled)The router administrator has disabled network name broadcasting (SSID) is a common practice in corporate networks.
  • 📡 Weak signalIf you are at the edge of the coverage area, your smartphone may not detect the network, even though it is technically available.
  • 🔄 Incompatible standardsFor example, the router only works in the range 5 GHz, and your smartphone only supports 2.4 GHz (or vice versa).
  • 🛠️ Software limitations. Some firmware (for example, on Xiaomi or Huawei) block the display of networks with certain security parameters.

If the problem is hidden network, manual addition is the only way out. If the problem is signal or standards, try moving closer to the router or changing the range settings in its control panel.

📊 How often do you connect to hidden Wi-Fi networks?
Permanently (work/study)
Sometimes (hotels, cafes)
There are no such networks nearby
I don't know what this is

Method 1: Adding a network through standard Android settings

This is the most universal method that works on all devices - from Samsung Galaxy to Google PixelThe instruction is suitable for pure Android and most shells (MIUI, ColorOS, One UI):

  1. Open SettingsWi-Fi (or Network and Internet → Wi-Fi on some devices).
  2. Scroll down the list of available networks and press Add a network (or Other networksAdd manually).
  3. Fill in the fields:
    • Network name (SSID) — the exact name of the Wi-Fi (case is important! for example, Office_WiFioffice_wifi).
    • Security type - select from the list (usually WPA2-PSK or WPA3-PSK).
    • Password - Enter the security key.
  • Click Save. DeviceAttempt to connect to the network.
  • If the network still does not connect, check:

    • 🔑 Correctness of the entered information password (symbols 0 And O, 1 And l easy to confuse).
    • 🛡️ Security typeFor example, if the router is configured to WPA3, and you chose WPA2, the connection will not take place.
    • 📶 RangeIn some cases it is necessary to specify it explicitly. 2.4 GHz or 5 GHz in additional settings.

    Correct network name (SSID)|Correct security type (WPA2/WPA3)|Correct password|Band (2.4/5 GHz, if available)-->

    ⚠️ Attention: On some devices (eg. Xiaomi Redmi With MIUI 14) after manually adding a network, you may need to reboot smartphone for the connection to work. This is due to power-saving features.

    Method 2: Connecting via QR code (the fastest method)

    If you have access to QR code of the network (You can generate it in the router settings or ask the administrator), the connection will take only a few seconds. This method is supported by all modern versions of Android, starting from Android 10.

    How does this work:

    1. Open Settings → Wi-Fi.
    2. Click on the icon QR code (usually in the upper right corner) or select Add Network → QR Scanner.
    3. Point the camera at the QR code. The system will automatically scan it. SSID, security type And password.
    4. Confirm the connection.

    Advantages of the method:

    • Instant connection without manual data entry.
    • 🔒 Errors have been eliminated when entering a password or network name.
    • 📱 Works even on devices with limited rights (for example, in corporate phones).

    If the QR code cannot be read:

    • 📸 Check it out camera resolution for the application Settings.
    • 💡 Make sure the QR code generated correctly (You can check it using third-party scanners, for example, Google Lens).
    • 🔄 Try it reboot Smartphone - sometimes helps with camera problems.

    Method 3: Using WPS (for routers with support)

    WPS (Wi-Fi Protected Setup) — is a technology for quick connection without entering a password. It works if:

    • 📶 Router supports WPS (usually there is a button on the body).
    • 📱 Your smartphone compatible with WPS (on some devices this function is disabled by default).

    Instructions:

    1. Open Settings → Wi-Fi → Advanced (or Other networks → WPS).
    2. Select Connecting via WPS.
    3. Click the button WPS on the router (usually it is signed and located on the back panel).
    4. Wait for the connection (it will take up to 2 minutes).
    Advantages of WPS Disadvantages of WPS
    ⚡ Quick connection without a password 🔓 Vulnerability to hacking (on older routers)
    📱 Works on most Android devices 🚫 Not all routers support WPS
    🔄 Convenient for guest networks ⚠️ May not work with some security types (eg. WPA3)
    ⚠️ Attention: If your router is older than 2018, disable WPS after connection. This technology has vulnerabilities that allow the PIN code to be brute-forced within a few hours.

    Method 4: Manual connection via ADB (for advanced users)

    If standard methods do not work (for example, on custom firmware or devices with limited rights), you can add a network through ADB (Android Debug Bridge)This method requires PC And USB cables, but gives full control over the settings.

    Step-by-step instructions:

    1. Turn on USB debugging on smartphone:
      • Go to Settings → About phone → Build number and press 7 times to activate Developer mode.
      • Return to Settings → System → Developer Options and turn it on USB debugging.
  • Connect your smartphone to your PC and open command line (Windows) or terminal (macOS/Linux).
  • Enter the command to add a network:
    adb shell cmd wifi add_network [SSID] [PASSWORD] [SECURITY_TYPE]

    Example for the network MyWiFi with a password 12345678 and type WPA2:

    adb shell cmd wifi add_network MyWiFi 12345678 WPA2
  • Activate the network:
    adb shell cmd wifi enable_network [NETWORK_ID]

    (To know NETWORK_ID you can use the command adb shell cmd wifi list_networks)

  • This method is useful if:

    • 🔧 You need to add a network with non-standard parameters (For example, 802.1X Enterprise).
    • 📱 Device does not have a graphical interface (For example, Android TV or a tablet in kiosk mode).
    • 🔒 Required automation connections (for example, for mass deployment of devices).
    What to do if ADB doesn't recognize the device?

    If the team adb devices returns an empty list, check:

    1. Are they installed? ADB drivers (download from the smartphone manufacturer's website).

    2. Is it turned on? file transfer mode (MTP) when connected via USB.

    3. Did you allow it? debugging on the smartphone screen (a request will appear when you first connect).

    Troubleshooting: Why Manual Connection Doesn't Work

    Even after entering the data correctly, the network may do not connectLet's look at common errors and how to fix them:

    • 🔄 "Connecting..." hangs endlessly:
      • Check if your router supports it DHCP (automatic IP acquisition). If not, manually enter the IP address in the network settings.
      • Reboot router and a smartphone.
    • 🚫 "Authentication..." → "Saved, WPA/WPA2 protection":
      • Make sure the security type on your phone is matches with the router settings (for example, WPA2-PSK vs WPA2/WPA3 Mixed).
      • Try changing your password to a simpler one (without special characters) for the test.
    • 📵 The network connects, but there is no internet access.:
      • Check your settings DNS (try to specify 8.8.8.8 or 1.1.1.1 manually).
      • Make sure there is no problem with your router. MAC filtering (your device may be locked).

    If nothing helps:

    • 🔧 Reset network settings on your smartphone: Settings → System → Reset → Reset Wi-Fi, mobile network, and Bluetooth settings.
    • 📡 Check your router settings: it might be turned on client isolation mode (AP Isolation), which blocks access.

    Additional settings for a stable connection

    After a successful connection, you can optimize the network:

    • 📶 Network priority:

      If your smartphone constantly switches between Wi-Fi and mobile networks, prioritize Wi-Fi:

      1. Go to Settings → Wi-Fi → [Your network] → Advanced.
      2. Turn on Connect automatically And Priority connection (if any).
  • 🔋 Energy saving:

    On some devices (eg. Samsung) Wi-Fi turns off in sleep mode. To avoid this:

    1. Open Settings → Device Care → Battery → Sleep Mode.
    2. Add your network to Always active connections.
  • 🔒 Changing the security type:

    If the network is using an outdated WEP or WPA, try changing the type to WPA2-PSK in the router settings - this will increase stability.

  • ⚠️ Attention: On devices with Android 12+ may work MAC privacy protection (MAC address randomization). If your network uses MAC address binding, disable this feature in your Wi-Fi settings.

    FAQ: Frequently asked questions about manually connecting to Wi-Fi

    Is it possible to connect to Wi-Fi without a password?

    Yes, if the network open (without security) or used WPSAlso, some public networks (for example, in cafes) require authorization through portal — in this case, connection is possible, but Internet access will only appear after entering your login/password in the browser.

    How do I find out my network's security type?

    There are several ways:

    1. View in router settings (usually in the section Wi-Fi or Wireless network).
    2. Use network analysis applications such as WiFi Analyzer (shows the security type for visible networks).
    3. Connect to the network with another device (for example, a laptop) and view the connection properties.
    Why doesn't my smartphone save my Wi-Fi password?

    This may be due to:

    • 🔄 Reset network settings (for example, after updating the OS).
    • 📱 Firmware limitations (on some devices Xiaomi or Huawei passwords are reset when the cache is cleared).
    • 🔒 Conflict with VPN or firewall (try disabling them temporarily).

    Solution: Manually add the network again and tick the box Save password (If there is no such option, reset your Wi-Fi settings).

    How do I connect to Wi-Fi with Enterprise security (802.1X)?

    For corporate networks with 802.1X (For example, EAP-TTLS or PEAP):

    1. When manually adding a network, select the security type 802.1X EAP.
    2. Specify the authentication method (e.g. PEAP), username and password.
    3. If required, please download certificate (This must be provided by the network administrator).

    On some devices (eg. Samsung Knox) may require additional installation EAP client.

    Is it possible to add Wi-Fi via NFC?

    Yes, if the router supports it NFC (for example, some models ASUS or TP-Link). To do this:

    1. Activate NFC on your smartphone.
    2. Bring the device to NFC tag on the router (usually it is located on the back panel).
    3. Confirm the connection.

    This method is rare, but convenient for quickly connecting guests.