rdmo94

Results 9 comments of rdmo94

Only when withInternet is set to false. Otherwise I see no dialogue or anything.

Let me know if you need any further details!

@daadu Any updates yet? I'm getting the same message as @manu-hr, but not sure if it is considered an error. I can confirm, that it working fine for Android versions...

Additionally I also experienced this error quite some times: java.lang.IllegalArgumentException: NetworkCallback was not registered, with a stack trace related to WifiIotPlugin. I'm not sure why and when it occurs, but...

![Screenshot 2022-01-25 at 12 13 55](https://user-images.githubusercontent.com/47812442/150967014-be8a8aac-5c23-48cb-8040-28f19a03d95d.png) For reference I can confirm, that this exception occurs when trying to connect to a wifi network, when wifi is turned off. For me,...

@daadu Thanks a lot for your effort. I tried your suggested workaround with `await WiFiForIoTPlugin.loadWifiList()` without any change. Registering the network before connecting has no effect either. Still nothing happens...

The issue still persists. In my project we've had to built our own native tool for newer Android versions using the `WifiNetworkSuggestion.Builder`. Using this approach Android will present a list...

https://developer.android.com/reference/android/net/wifi/WifiNetworkSuggestion.Builder here is a reference to the Android API used. ``` private fun connectToWifi(ssid: String?, password: String?): Boolean { if(ssid == null || password == null) return false; val suggestion...

> > https://developer.android.com/reference/android/net/wifi/WifiNetworkSuggestion.Builder here is a reference to the Android API used. > > ``` > > private fun connectToWifi(ssid: String?, password: String?): Boolean { > > if(ssid == null...