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
i know this is old, but maybe can help you.
public bool CheckInternetConnection(){ return !(Application.internetReachability == NetworkReachability.NotReachable) }