All Projects → edsnider → Latestversionplugin

edsnider / Latestversionplugin

Licence: mit
LatestVersion Plugin for Xamarin and Windows apps

Projects that are alternatives of or similar to Latestversionplugin

Xamarin.plugins
Cross-platform Native API Access from Shared Code!
Stars: ✭ 1,176 (+1087.88%)
Mutual labels:  nuget, xamarin, xamarin-forms
XamarinHosting
Xamarin Forms Generic Host implementation for Microsoft.Extensions.Hosting.
Stars: ✭ 19 (-80.81%)
Mutual labels:  xamarin, nuget, xamarin-forms
Xamarin.forms.breadcrumb
This is a breadcrumb navigation control that is complete automatic and uses the Navigation stack and page titles to generate the breadcrumbs.
Stars: ✭ 130 (+31.31%)
Mutual labels:  nuget, xamarin, xamarin-forms
Plugin.audiorecorder
Audio Recorder plugin for Xamarin and Windows
Stars: ✭ 140 (+41.41%)
Mutual labels:  nuget, xamarin, xamarin-forms
ButtonCirclePlugin
Circle Buttons with icon for your Xamarin.Forms Applications
Stars: ✭ 96 (-3.03%)
Mutual labels:  xamarin, nuget, xamarin-forms
Xxamarin
Repositório com ✨ 141 Exemplos de Implementações e 📦 13 Pacotes de Xamarin
Stars: ✭ 68 (-31.31%)
Mutual labels:  nuget, xamarin, xamarin-forms
Filepicker Plugin For Xamarin And Windows
FilePicker Plugin for Xamarin and Windows
Stars: ✭ 151 (+52.53%)
Mutual labels:  plugin, nuget, xamarin-forms
VersionTrackingPlugin
Version Tracking Plugin for Xamarin and Windows
Stars: ✭ 62 (-37.37%)
Mutual labels:  xamarin, nuget, xamarin-forms
DevOpsExamples
A repo to show you how to use a private NuGet feed, such as Telerik, to restore packages in Azure DevOps, GitHub Actions, GitLab CI and AppCenter.
Stars: ✭ 16 (-83.84%)
Mutual labels:  xamarin, nuget, xamarin-forms
ScreenshotPlugin
A simple Screenshot plugin for Xamarin and Windows to get and save screenshot in yours apps.
Stars: ✭ 32 (-67.68%)
Mutual labels:  xamarin, nuget, xamarin-forms
Xamarin.forms.inputkit
CheckBox, Radio Button, Labeled Slider, Dropdowns etc.
Stars: ✭ 372 (+275.76%)
Mutual labels:  nuget, xamarin, xamarin-forms
Mvvmcross
The .NET MVVM framework for cross-platform solutions, including Xamarin.iOS, Xamarin.Android, Windows and Mac.
Stars: ✭ 3,594 (+3530.3%)
Mutual labels:  nuget, xamarin, xamarin-forms
Xamarinmediamanager
Cross platform Xamarin plugin to play and control Audio and Video
Stars: ✭ 647 (+553.54%)
Mutual labels:  nuget, xamarin, xamarin-forms
Hunt
Hunt is a virtual scavenger hunt app where players can join a game, select a team and solve hints to acquire treasure. The team with the most points wins.
Stars: ✭ 65 (-34.34%)
Mutual labels:  xamarin, xamarin-forms
Googleanalyticsforxamarinforms
Google Analytics Plugin for Xamarin Forms
Stars: ✭ 65 (-34.34%)
Mutual labels:  xamarin, xamarin-forms
Enhancedentry
Extended Xamarin Forms Entry with custom behaviours.
Stars: ✭ 64 (-35.35%)
Mutual labels:  xamarin, xamarin-forms
Googleclientplugin
Google Client Plugin for Xamarin iOS and Android
Stars: ✭ 69 (-30.3%)
Mutual labels:  plugin, xamarin
Xamarin Plugins
Cross-platform Plugins for Xamarin, Xamarin.Forms and Windows
Stars: ✭ 97 (-2.02%)
Mutual labels:  xamarin, xamarin-forms
Xamuidemo
Xamarin Forms Login Page UI Kit
Stars: ✭ 82 (-17.17%)
Mutual labels:  xamarin, xamarin-forms
Aiforms.layouts
AiForms.Layouts (WrapLayout) for Xamarin.Forms
Stars: ✭ 94 (-5.05%)
Mutual labels:  xamarin, xamarin-forms

LatestVersion Plugin for Xamarin and Windows apps

Build Status MyGet NuGet

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.

Supported platforms and versions

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+)

API Usage

Check for latest version

Check if the current running app is the latest version available in the public store:

bool isLatest = await CrossLatestVersion.Current.IsUsingLatestVersion();

Get latest version number

Get the version number of the current running app's latest version available in the public store:

string latestVersionNumber = await CrossLatestVersion.Current.GetLatestVersionNumber();

Get installed version number

Get the version number of the current app's installed version:

string installedVersionNumber = CrossLatestVersion.Current.InstalledVersionNumber;

Open app in public store

Open the current running app in the public store:

await CrossLatestVersion.Current.OpenAppInStore();

Example

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();
    }
}

License

Licensed under MIT. See License file

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].