Using following code to detect solar device for awhile. It works for fenix in the simulator and real device.
For Instinct 2 Solar in the simulator it always return false. It seems sysStats.solarIntensity is always null.
Any ideas how to get it fixed in the simulator?
var sysStats = System.getSystemStats();
if(sysStats has :solarIntensity){
if(sysStats.solarIntensity != null){
self.isSolar = true;
...
...