getProperty not working for List Values

For some reason, using getProperty, I can capture changes made in my Garmin Connect phone app from my Connect IQ program, EXCEPT for list values (from a pull down menu in Garmin Connect). These list-based values are not seen by my Connect IQ app either in the Simulator or on the Device. Calling getProperty just continues to return the DEFAULT value, no matter what I pick.

Here is a view of my Properties.xml file. The SKEW property returns the DEFAULT value of 2, even after selecting one of the other 5 values from the pull down in Garmin Connect. But this technique works perfectly for boolean and numeric properites. Any ideas?


Here is part of the the properties.xml file. Note the DEFAULT value for the list is "2", and there are 6 values to select from.
==============================================================
<property id="skew_prop" type="number">2</property>

<setting propertyKey="@Properties.skew_prop" title="@Strings.skew_title">
<settingConfig type="list">
<listEntry value="0">@Strings.a90_list</listEntry>
<listEntry value="1">@Strings.a95_list</listEntry>
<listEntry value="2">@Strings.a100_list</listEntry>
<listEntry value="3">@Strings.a105_list</listEntry>
<listEntry value="4">@Strings.a110_list</listEntry>
<listEntry value="5">@Strings.a115_list</listEntry>
</settingConfig>
</setting>
==============================================================

Here is the view in Connect IQ (actually the sim in this case, same view)


Here is the code... it works fine for boolean and numeric. Does not work for list values. Always returns the default "2" no matter what I select from the pull down.
==============================================================
//BOOLEAN WORKS
System.println("Beeps Before: " + useBeeps);
useBeeps = getP.getProperty("beep_prop");
System.println("Beeps After: " + useBeeps);

//ALWAYS RETURNS "2"
System.println("Skew Before: " + skew);
skew = getP.getProperty("skew_prop");
System.println("Skew After: " + skew);
==============================================================