I have managed to scan for wireless networks and obtain scan results in my application. but is there a way i could possibly connect to them using my app itself? I was wondering whether I would have to specify the encryption type for the network i'm trying to connect? and my requirement would be to connect to any wireless network irrespective of it's encryption type?
Any ideas? Thanks
TO connect to WiFi AP needed to implement followed steps:
Scan WiFi
To be sure that you have appropriate AP. Bear in mind that you must provide password to secured AP. Suppose you know witch AP you prefer and now we are going to other step:
Create new profile
We need must support information about:
What type AP should be: Open spot, WEP, WPA, (or WPA2), with shared-key authentication, WPA2-Enterprise (RADIUS Server authentication)
Priority - Priority determines the preference given to a network by wpa_supplicant when choosing an access point with which to associate (I set default 1000)
SSID - AP
Name
Password - if it's secured AP.
Here is a snippets method demonstrating the technique:
I used single
enum TEncMode encMode
for switch statementFor now we configured new AP according to our requst. Now lets create it:
Create new AP only
if you skip this implementation, after turn WiFi off your created AP will dissapear
m_WifiManager.saveConfiguration();
So far so good, we can wait for android to connect to our new AP or we can do it by ourselves
Create and connect to AP
Enum TEncMode
That's all. For sure you can listen on WiFi state changed to catch
CONNECTED
event. Because we don't know how long it will take to device to connect to your AP. But we disabled all other APs and enabled new one. After we can get HTTP response for example from google to be sure that our AP has internet.Asked me to add this method: