Plugin.Maui.LatestVersion
10.0.2
dotnet add package Plugin.Maui.LatestVersion --version 10.0.2
NuGet\Install-Package Plugin.Maui.LatestVersion -Version 10.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Plugin.Maui.LatestVersion" Version="10.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Plugin.Maui.LatestVersion" Version="10.0.2" />
<PackageReference Include="Plugin.Maui.LatestVersion" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Plugin.Maui.LatestVersion --version 10.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Plugin.Maui.LatestVersion, 10.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Plugin.Maui.LatestVersion@10.0.2
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Plugin.Maui.LatestVersion&version=10.0.2
#tool nuget:?package=Plugin.Maui.LatestVersion&version=10.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Plugin.Maui.LatestVersion
Plugin.Maui.LatestVersion provides the ability to detect if you are running the latest version of your iOS, Android, or Windows app and open it in the App Store, Play Store, or Microsoft Store to update it.
Install Plugin
Available on NuGet.
Install with the dotnet CLI: dotnet add package Plugin.Maui.LatestVersion, or through the NuGet Package Manager in Visual Studio.
Supported Platforms
| Platform | Minimum Version Supported |
|---|---|
| iOS | 15.0+ |
| Android | 24.0 (API 24) |
| Windows | 10.0.17763.0+ |
Example
using Plugin.Maui.LatestVersion;
try
{
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();
}
}
}
catch (LatestVersionException ex)
{
// Handle exceptions such as no internet connection, app not found in store, etc.
Debug.WriteLine($"Error checking app version: {ex.Message}");
}
Next code on Windows returns null due to platform limitations.
var latestVersion = await CrossLatestVersion.Current.GetLatestVersionNumber();
License
Licensed under MIT. See License file
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net9.0 is compatible. net9.0-android was computed. net9.0-android35.0 is compatible. net9.0-browser was computed. net9.0-ios was computed. net9.0-ios18.0 is compatible. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net9.0-windows10.0.19041 is compatible. net10.0 is compatible. net10.0-android was computed. net10.0-android36.0 is compatible. net10.0-browser was computed. net10.0-ios was computed. net10.0-ios26.0 is compatible. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. net10.0-windows10.0.19041 is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- No dependencies.
-
net10.0-android36.0
- No dependencies.
-
net10.0-ios26.0
- No dependencies.
-
net10.0-windows10.0.19041
- No dependencies.
-
net9.0
- No dependencies.
-
net9.0-android35.0
- No dependencies.
-
net9.0-ios18.0
- No dependencies.
-
net9.0-windows10.0.19041
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.