The example given for settings (https://developer.garmin.com/connect-iq/core-topics/app-settings/) has a list in the settings.xml file:
<setting propertyKey="@Properties.myString" title="@Strings.MyStringTitle" prompt="@Strings.MyStringPrompt"> <settingConfig type="list"> <listEntry value="0">@Strings.HelloWorld</listEntry> <listEntry value="1">@Strings.Ackbar</listEntry> <listEntry value="2">@Strings.Garmin</listEntry> </settingConfig> </setting>
However, I cannot find a properties.xml file to go with it and cannot work out how is it supposed to work.
If I don't put the property in I get the error: ERROR: Property not found for the property key 'myString
'.
How is this supposed to work please?