Created
March 25, 2022 12:34
-
-
Save rdelrosario/c1d547bb9e37e902525a4920cddd2fcf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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