I would like to use more than 255 strings in my watch face for the more recent watches, but still let the older watches work. So my logic was to specify 2 different resource paths:
resources-standard - over 255 stings
resources-lower - less than 255 strings
(I'll use the Fenix 6 and Fenix 8 Solar 47mm as the 2 examples)
So in the monkey.jungle file I specify:
base.resourcePath = $(base.resourcePath);resources-standard
fenix6.resourcePath = $(fenix6.resourcePath);resources-lower
This is OK for the F8 but errors on the F6 as having too many strings - which surprised me. OK I thought maybe its the order, so I put the F6 first
fenix6.resourcePath = $(fenix6.resourcePath);resources-lower
base.resourcePath = $(base.resourcePath);resources-standard
This also errors.
Now I'm into a world of badness, especially in the future, and I make the resources-lower the base folder
base.resourcePath = $(base.resourcePath);resources-lower
fenix8solar47mm.resourcePath = $(fenix8solar47mm.resourcePath);resources-standard
And this worked correctly for the F6 and F8, the issue this would present is it would require every new watch to be added to the list, instead of it being a one off static list now.
I'm using Windows 11, VSC 1.98.2, Monkey C 1.1.1, SDK 8.1.0 and my devices are up to date.
Am I doing this wrong, is there a better way e.g. specify API level to use different resource folders or somehow do this in code? Any help, guidance or pointers would be much appreciated