Hi,
Supposing I had a set of resource directories that I wanted to keep somewhere out of the way, but they were in subdirectories thereof.
EG:
/really/really/long/path/to/drawables
/really/really/long/path/to/productConfig
/really/really/long/path/to/productSpscific/drawables
Is it possible, in monkey.jungle, to set a variable for the repeated part and then to combine it?
EG: I would like to be able to something like:
storedFiles = /really/really/long/path/to base.resourcePath = $(base.resourcePath);${storedFiles)/drawables;${storedFiles)/productConfig;${storedFiles)/productSpscific/drawables
But...
I can't find the syntax to achieve it.
Alternatively, is there an easy way to get the compiler to scan a directory for "resources-" style names? EG: I might have a subdirectory somewhere that has "resources-fenix5", "resources-fenix3" etc. and I just want to add the subdirectory to monkey.jungle rather than have to explicitly note down each item as "resouces-fenix5.resourcePath = $(resources-fenix5);path/to/my/subdirectory/resources-fenix5" etc.
Hopeful of Dublin