Application Info
Last updated
Last updated
⚙️ Powered by Rock RMS
Inherits from Xamarin.Forms.ContentView
Somewhere in your application you normally have some sort of About page that gives information about your app, such as version numbers. This view provides those version numbers in a quick way without you having to worry about styling. It simply lays out each item as a single Label inside a vertical StackLayout.
The values displayed are:
Package Version - This displays the version number of the site package. This is the file that is built when you click the Deploy button when viewing your site. This can tell you if the user is somehow using an outdated site package.
Shell Version - The shell is what provides all the standard code and functionality across all Rock Mobile applications. This helps you know what features are supported on the user's device.
App Store Version - This will match the version number of your application bundle as reported by the Google Play Store and Apple App Store.
If you wish to completely customize how this data is presented, you can access the same information via data binding to Application.PackageVersion
, Application.ShellVersion
, and Application.ApplicationVersion
. Such as:
This view contains no properties of it's own.