Android Question How to get to wifi settings from an app

DickD

Active Member
Licensed User
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
 
Top