I am just starting out with MonkeyC and I seem to have an issue with the getProperty function. This is the line of code in the View.mc file in a watch-face project:
System.println(Application.getApp().getProperty("UseMilitaryFormat"));
And this is the actual UseMilitaryFormat in the properties.xml file:
<property id="UseMilitaryFormat" type="boolean">false</property>
Since UseMilitaryFormat is set to false, I'd imagine that the console would print 'false', but instead it always keeps on printing 'true', regardless of what the property is set to. Any ideas why and what I can do to fix it?