Skip to content

Instantly share code, notes, and snippets.

@rdelrosario
Created March 25, 2022 12:34
Show Gist options
  • Save rdelrosario/c1d547bb9e37e902525a4920cddd2fcf to your computer and use it in GitHub Desktop.
Save rdelrosario/c1d547bb9e37e902525a4920cddd2fcf to your computer and use it in GitHub Desktop.
public class UpdateVersionStartupTask : IStartupTask
{
public Task<bool> CanRunAsync() => Task.FromResult(true);
public Task RunAsync()
{
//TODO: Do Store version code here, can't do it since this app is not in the store
return App.Current.MainPage.DisplayAlert("New Version", "There is a new version of this app available. Would you like to update now?", "Yes", "No");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment