When I locate the two resource folders ("resources-round" and "resources-rectangle") in
A) the root of the project, the code fails to compile, "Undefined symbol.." with this code:
(new Ui.Bitmap({:rezId=>Rez.Drawables.NavIcon
,:locX=> xOffset
,:locY=> yOffset
})).draw(dc);
B) However, when the folders are located in the "resources" folder under the root of the project, the code compiles, but at run-time the round resources are being displayed on a rectangular watch.
I have made the following entries in the monkey.jungle file:
Round.resourcePath = $(base.resourcePath);resources-round
rectangle.resourcePath = $(base.resourcePath);resourcse-rectangle
But they don't seem to operate.
It seems that the correct approach should be A), but I'm unable to make it work.
(Mac, High Sierra, Eclipse Oxygen, SDK 3.0.3)