Currently trying to find in the doc if there is a way to check the internet connection status for a standalone build so that for example I properly adapt my features if the user is connected or not.
there is such a check, but only for iphone it seems. iPhoneSettings.internetReachability
How can I then detect is the user is online or not when in standalone?
To truly know you’re online, you need to implement “captive portal detection”, to know if you’re e.g. hitting a public WiFi login page. So just checking Application.internetReachability or doing a Ping to some address doesn’t guarantee you can successfully make connections or make WWW requests.
I have made an easy asset called Internet Reachability Verifier. It keeps you up-to-date whether you have verified internet access (WWW requests can be done).
More info here: http://j.mp/IRVUN