How do I know if there is an update to .NET Maui?

Gregg Lazzara 0 Reputation points
2024-04-15T19:21:14.2366667+00:00

I have an android app which has been created using .net MAUI  My requirement is to update the android app when an update becomes available Is there a way to have Azure email me or a group when that specific .net application has an update?

.NET MAUI
.NET MAUI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
3,499 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Bruce (SqlWork.com) 65,211 Reputation points
    2024-04-15T20:20:21.1366667+00:00

    Android sdk updates come from google. if you used any nuget packages, they are updated by the developer. an SDK Update may require an update to the Maui sdk. .net runtime updates are released on the second Tuesday of the month.

    Visual Studio is pretty good at notifying if an update is available. You should come up with you own release cycle. Weekly (if active development) or monthly, but you can probably get away with every 90 or 120 days.

    The exception will be the release of a new Android version (typically yearly). You will want to test your released app on the pre-release o/s to determine any issues. especially after the final release. You will want to fix with your current code base and api version. Maui support of a new api release will typically come after the final release. Nuget packages may take longer (or may never be updated).

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.