Hi, My project was working very well when i was using MLWiFi library 3.08 and manifest editor had below sdkversion range.
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="27"/>
Today, I have updated MLWiFi lbirary to 4.3 and updated manifest editor as below...
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="29"/>
As per new requirement of ML WiFi library V4.3 to connect SSID, i have updated code in my project as well. (Code is given for the reference
I am facing 2 issues..
1) Enabling WiFi APP does not enable WiFi
2) Connect WiFi : Whenever i try to connect any SSID, my phone throws below error as attached screenshot.
Note; Before this error, a momentarily message flashes (it is very difficult to note as message flashes for fraction of second). I think message has 3 options, Cancel - Save - Connect
My mobile Android version is 10.
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="27"/>
Today, I have updated MLWiFi lbirary to 4.3 and updated manifest editor as below...
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="29"/>
As per new requirement of ML WiFi library V4.3 to connect SSID, i have updated code in my project as well. (Code is given for the reference
I am facing 2 issues..
1) Enabling WiFi APP does not enable WiFi
2) Connect WiFi : Whenever i try to connect any SSID, my phone throws below error as attached screenshot.
Note; Before this error, a momentarily message flashes (it is very difficult to note as message flashes for fraction of second). I think message has 3 options, Cancel - Save - Connect
My mobile Android version is 10.
Connect WiFi Code:
Sub btnConnect_Click
If WiFi.isWifiEnabled=False Then
WiFi.EnableWifi(True)
End If
WiFi.saveWifiAP("Joshi",2,"123456",false,60000)
WiFi.connectWifiAP("Joshi",2,"123456",60000)
End Sub