I'm getting this error "Permission 'BluetoothLowEnergy' required for '$.Toybox.BluetoothLowEnergy.ScanResult.equals'." even though my app has nothing to do with BLE and used to compile fine. The code it is complaining about is the case statements for constants that are enums:
var prop = Properties.getValue(dataViews[i]);
switch (prop) {
case DATA_VIEW_DAILY:
case DATA_VIEW_DAILY_WIND:
case DATA_VIEW_DAILY_PRECIPITATION:
case DATA_VIEW_DAILY_GRAPH_TEMP_POP:
case DATA_VIEW_DAILY_GRAPH_WIND_PRESS:
// not allowed
Properties.setValue(dataViews[i], DATA_VIEW_HOURLY);
break;
default:
break;
}