I know how to get to wifi settings in IOS using the code shown below but this doesn't work in android. Can it be done?
B4X:
Sub Settingsbtn_click
For Each s As String In Array("prefs:root=WIFI", "App-Prefs:root=WIFI")
If Main.App.CanOpenURL(s) Then
Main.App.OpenURL(s)
End If
Next
End Sub