Skip to content

Instantly share code, notes, and snippets.

@stef-k
Last active October 8, 2023 21:15
Show Gist options
  • Save stef-k/0d1463c927966dedc67adf1b66dc93d0 to your computer and use it in GitHub Desktop.
Save stef-k/0d1463c927966dedc67adf1b66dc93d0 to your computer and use it in GitHub Desktop.
MAUI BLAZOR HYBRID USEFUL INFO

Version .net core 7

Display prompts and alerts

var result = await Application.Current.MainPage.DisplayAlert("Title", "Prompt", "Yes", "No");
await Application.Current.MainPage.DisplayAlert("Title", "Message", "OK");

Build - Sign - Deploy

  • First change your build type to Release from debug.
  • Clean
  • Rebuild
  • Right click your android project and click on archive
  • After successful archive click on Distribute and click on Ad-hoc
  • Create keystore file
  • After finishing click on Open Distribution Your apk file is ready.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment