Android Question WiFi and Data connections

Declan

Well-Known Member
Licensed User
Longtime User
My app is a "kiosk" type app where the app becomes the "device owner".
How can I implement a function that will enable the user to select the required WiFi connection, if available?
Also, if there is no WiFi connection, the device must default to a data connection.
 
Last edited:

Declan

Well-Known Member
Licensed User
Longtime User
Yes, I looked at all the related libraries.
But, got sorted with this:
B4X:
Dim i As Intent
   i.Initialize("android.settings.WIFI_SETTINGS", "")
   StartActivity(i)
Calls the Android WiFi Settings.
Nice and simple and works great.
 
Upvote 0
Top