Easily detect if you are running the latest version of your iOS, macOS, Android, or Windows app and open it in the App Store, Play Store, or Microsoft Store to update it. You can also use this plugin to check the latest version number of other apps and to open other apps in the App Store, Play Store, and Microsoft Store.
Platform | Supported | Version |
---|---|---|
Xamarin.iOS | Yes | 7.0+ |
Xamarin.Android | Yes | 10.0+ |
Xamarin.Mac | Yes | 10.7+ |
Windows (UWP) | Yes | 10.0+ (Target 14393+) |
Check if the current running app is the latest version available in the public store:
bool isLatest = await CrossLatestVersion.Current.IsUsingLatestVersion();
Get the version number of the current running app's latest version available in the public store:
string latestVersionNumber = await CrossLatestVersion.Current.GetLatestVersionNumber();
Get the version number of any app's latest version available in the public store:
string latestVersionNumber = await CrossLatestVersion.Current.GetLatestVersionNumber("appName");
appName
should be the app's bundle identifier (CFBundleIdentifier
) on iOS/macOS and the app's package name on Android.- This method is not currently supported on UWP. Only
GetLatestVersionNumber()
is supported.
Get the version number of the current app's installed version:
string installedVersionNumber = CrossLatestVersion.Current.InstalledVersionNumber;
Open the current running app in the public store:
await CrossLatestVersion.Current.OpenAppInStore();
Open any app in the public store:
await CrossLatestVersion.Current.OpenAppInStore("appName");
appName
should be the app's bundle name (CFBundleName
orCFBundleDisplayName
) on iOS/macOS, the app's package name on Android, and the app's Store ID or App ID on Windows.
using Plugin.LatestVersion;
var isLatest = await CrossLatestVersion.Current.IsUsingLatestVersion();
if (!isLatest)
{
var update = await DisplayAlert("New Version", "There is a new version of this app available. Would you like to update now?", "Yes", "No");
if (update)
{
await CrossLatestVersion.Current.OpenAppInStore();
}
}
Licensed under MIT. See License file