Hi,
So I would like to be able to display the version number of my software in settings. EG:
"Software version: 1.0.0, compiled on X-Y-Z"
I am aware that the manifest version number is not available in the SDK, so I have a script that writes the value as a resource and updates it with every build.
So far, so good...
BUT... then I need to find a way to display it to the user.
I _could_ set it as a property, but that would be retained between builds as Garmin would see it as a user preference. So that won't work.
I _could_ set it as a string and use the string as a label in settings, but then I need to localise the version string in my build scripts and... well that's harder.
Is there a better way to display content in settings menu that is CONSTANT (as regards the user) but VARIABLE for each new build?
G