Hello!
I’m making an application which is using WiFi to communicate with things. (internet is not required!)
I am using this code:
if (Application.internetReachability == NetworkReachability.ReachableViaLocalAreaNetwork)
It’s works most of the time, but on iOS, it’s sometimes give back a False, even when the wifi is connected to router, also internet is available. I have to turn off the wifi and then turn it on again to fix the issue.
(also note: The are repeaters in the place where the IOS was tested. Android was tested in a location where there is only a single router and it works perfectly. So It can be iOS or repeater problem)
Any idea to fix this issue?