I've searched everywhere and must have missed how to do this (I'm sure it must be simple). I'd like to store an array of colour values in properties.xml then read it for the watchface. How to do that?
This does not build:
<property id="colours" type="array">[0x000000, 0xFFFFFF, 0x00FF00, 0xFFAA00]</property>
The followup question would be how to read in the array? I generally use
App.Properties.getValue("colours").toNumber();
for reading in single numbers, but not sure if that works with an array. Thanks!