Oscore.Maui.AppStoreInfo 1.0.0

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Oscore.Maui.AppStoreInfo --version 1.0.0
                    
NuGet\Install-Package Oscore.Maui.AppStoreInfo -Version 1.0.0
                    
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="Oscore.Maui.AppStoreInfo" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Oscore.Maui.AppStoreInfo" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Oscore.Maui.AppStoreInfo" />
                    
Project file
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 Oscore.Maui.AppStoreInfo --version 1.0.0
                    
#r "nuget: Oscore.Maui.AppStoreInfo, 1.0.0"
                    
#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.
#addin nuget:?package=Oscore.Maui.AppStoreInfo&version=1.0.0
                    
Install Oscore.Maui.AppStoreInfo as a Cake Addin
#tool nuget:?package=Oscore.Maui.AppStoreInfo&version=1.0.0
                    
Install Oscore.Maui.AppStoreInfo as a Cake Tool

Maui.AppStoreInfo

Nuget package CI/CD License: MIT

Allows you to check the information in App stores(for example the latest published version) and suggest actions to the user based on this.

Usage

  • Add NuGet package to your project:
<PackageReference Include="Oscore.Maui.AppStoreInfo" Version="1.0.0" />
  • Add the following to your MauiProgram.cs CreateMauiApp method:
builder
    .UseMauiApp<App>()
+   .UseAppStoreInfo(options =>
    {
        options.CountryCode = "gb"; // Optional, default is "us"
    })
    .ConfigureFonts(fonts =>
    {
        fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
        fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
    });
  • Use the AppStoreInfo.Current class or IAppStoreInfo from DI to check the latest version and suggest actions to the user:
if (!await AppStoreInfo.Current.IsUsingLatestVersionAsync())
{
    await AppStoreInfo.Current.OpenApplicationInStoreAsync();
}

Notes

  • Since Android doesn't provide an official API, there is no support for this other than opening a store page. It is recommended to use Android In-App Updates if you need to check for updates.
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-android34.0 is compatible.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-ios17.2 is compatible.  net8.0-maccatalyst was computed.  net8.0-maccatalyst17.2 is compatible.  net8.0-macos was computed.  net8.0-tizen8.0 is compatible.  net8.0-tvos was computed.  net8.0-windows was computed.  net8.0-windows10.0.19041 is compatible.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Oscore.Maui.AppStoreInfo:

Repository Stars
bitfoundation/bitplatform
Build all of your apps using what you already know and love ❤️
Version Downloads Last updated
1.1.0 3,089 12/3/2024
1.0.7 5,894 3/28/2024
1.0.6 212 3/20/2024
1.0.4 857 2/23/2024
1.0.3 147 2/22/2024
1.0.2 153 2/21/2024
1.0.1 142 2/21/2024
1.0.0 169 2/19/2024
0.9.0 146 2/19/2024
0.0.0-dev 90 12/5/2024