Displaying App Version

Go to the Shared build settings. Anything in the “Version” box will be what shows in App.Version. I suspect you want to display the Major and Minor versions, which you can build into a string using App.MajorVersion and App.MinorVersion.

MessageBox(App.MajorVersion + “.” + App.MinorVersion + “.” + App.BugVersion)

Does that work?