Hi Helpful People!
I have an application where I like to display SSID where my Android Device is connected to via WiFi. So I use something like this:
Dim sss As String
Wait For (GetWifiInfo) Complete (WifiInfo As JavaObject)
If WifiInfo.IsInitialized Then
sss=WifiInfo.RunMethod("getSSID", Null)
End If
It was working like a charm in Android 7. Now I have new devices with Android 14 and this piece of code returning me <unknown ssid>
Any suggestions?
Many thanks in advance
Serg
I have an application where I like to display SSID where my Android Device is connected to via WiFi. So I use something like this:
Dim sss As String
Wait For (GetWifiInfo) Complete (WifiInfo As JavaObject)
If WifiInfo.IsInitialized Then
sss=WifiInfo.RunMethod("getSSID", Null)
End If
It was working like a charm in Android 7. Now I have new devices with Android 14 and this piece of code returning me <unknown ssid>
Any suggestions?
Many thanks in advance
Serg