I got a vivoactive today, so a real device to test on! It's running FW 2.40.
Tried to load a watchface and a widget I'm working on, and found an interesting thing. Using "phoneConnected" causes the VA to crash.
var settings=Sys.getDeviceSettings();
if(settings.phoneConnected)
{
..
}
(if I change the if to
if(true)
it runs fine)