We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I can't seem to understand how I force the user to update if they want to continue using the app?
In my MauiProgram.cs this is what I use:
.UseAndroidInAppUpdates(static options => { #if DEBUG options.UseFakeAppUpdateManager = true; #endif options.ImmediateUpdatePriority = 5; })
However when an update is available, its optional for the user to update, which for me seems like the flexible option.
Can someone assist me?
The text was updated successfully, but these errors were encountered:
Default priority is 0. So you need to use options.ImmediateUpdatePriority = 0; to always use immediate updates.
options.ImmediateUpdatePriority = 0;
Sorry, something went wrong.
No branches or pull requests
I can't seem to understand how I force the user to update if they want to continue using the app?
In my MauiProgram.cs this is what I use:
However when an update is available, its optional for the user to update, which for me seems like the flexible option.
Can someone assist me?
The text was updated successfully, but these errors were encountered: