Last active
November 7, 2021 14:45
-
-
Save liu7yong/f3765398b2ea5f30c986 to your computer and use it in GitHub Desktop.
How to connect to a specific wifi network in Android programmatically?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WifiConfiguration wifiConfig = new WifiConfiguration(); | |
wifiConfig.SSID = String.format("\"%s\"", ssid); | |
wifiConfig.preSharedKey = String.format("\"%s\"", key); | |
WifiManager wifiManager = (WifiManager)getSystemService(WIFI_SERVICE); | |
//remember id | |
int netId = wifiManager.addNetwork(wifiConfig); | |
wifiManager.disconnect(); | |
wifiManager.enableNetwork(netId, true); | |
wifiManager.reconnect(); |
@YD27 usin https://developer.android.com/guide/topics/connectivity/wifi-suggest i was able to connect to wifi but internet is not working
How to connect to a specific network in android 10 , any working example?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
it's deprecated
check this for Android 10 https://developer.android.com/guide/topics/connectivity/wifi-suggest