I have a Unity project which I build for Android and iOS platforms. I want to check for internet connectivity on Desktop, Android, and iOS devices. I\'ve read about three di
You can check network connection using this code
if(Application.internetReachability == NetworkReachability.NotReachable){ Debug.Log("Error. Check internet connection!"); }