Microsoft Visual Studio Professional 2022 (64-bit) - Preview Version 17.14.0 Preview 2.0 will no longer compile my MAUI app
After installing Visual Studio 2022 Preview 2, my MAUI app won't build. Trying to restore workloads, I get this: Workload update failed: One or more errors occurred. (Version 35.0.50 of package microsoft.android.sdk.windows.msi.x64 is not found in…
Microsoft Visual Studio Professional 2022 (64-bit) - Preview Version 17.14.0 Preview 2.0 will no longer compile my MAUI app
After upgrading to preview 2, I cannot build my MAUI app. Visual Studio Output says: To build this project, the following workloads must be installed: wasm-tools-net8 To install these workloads, run the following command: dotnet workload restore But…
Microsoft.Identity.Client.Desktop
I successfully tested the sample https://github.com/Azure-Samples/ms-identity-dotnetcore-maui/tree/main/MauiAppBasic in .NET MAUI 8.0. Now I would like to create my own project using the same technique. To begin with, I created an empty project, then I…
Android-specific code on MAUI: Trouble with Android.Resource
What I am trying to achieve right now is something I've done before in other prototypes where I work, but I haven't run into this problem so far. I will give as much context as possible without making this question too long. Our app will use ARCore on…
MAUI for iOS Publish in Visual Studio 2022 for Windows in Parallax VM
I have a Mac. I have a Parallels Windows 11 VM with Visual Studio 2022 installed with the dotnet SDK and MAUI workloads. My source code is on the Mac and shared as a drive in the VM so I can open the exact same project on either the Mac using VSCode or…
Issue Populating CollectionView with ObservableCollection in .NET MAUI
Hi, I am facing an issue in my .NET MAUI application where I am trying to populate a CollectionView using an ObservableCollection<LeaveSummary> in my ViewModel. The data is correctly fetched, and I can see the ObservableCollection.Count in a Label,…
Flyout Navigation - Mouse hover
Hi, In continue to https://learn.microsoft.com/en-us/answers/questions/2202802/flyout-navigation-improvements?page=1#answer-1989782 How I support mouse hover when navigation on collection view ? I want Custom Cursor hand when hovering over an item in…
ANDROID REDIRECT URI
I am trying to test the sample https://github.com/Azure-Samples/ms-identity-dotnetcore-maui/tree/main/MauiAppWithBrokerTo run in Android, it requires that "AndroidRedirectUri" be defined. The Entra ID portal requires a hash key that has to be…
Fonts become italic
Hi, In Maui template we have: fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular"); fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold"); Later I publish the app as exe. When I create setup with…
Consuming a Static Library created in c++ in MAUI for iOS Deployment.
Hello, I have a c++ library that is for Signal Processing. This is being built for arm64, arm64e. I have created an iOS Binding Library that consumes *.a static library and imports methods. I am referencing this binding library in my MAUI Project. I have…
Flyout Navigation Improvements
Hi @Leon Lu (Shanghai Wicresoft Co,.Ltd.) I'm using this flyout Navigation. sample code from "Leak.zip" from end of: https://github.com/dotnet/maui/issues/23625 Questions: Can improve navigation beetween page 1 to page 2 to page 3 ? Can…
Image Resizing issue on MAUI android app
Requirement :The MAUI android app allows users to capture / pick 75 images with any size and orientation. Here the challenge is to resize these 75 images into a standard size such that it fits the screen and the images maintain its aspect ratio. I have…
Unable to do Production Build for iOS on Visual Studio
Whenever we try to build, we get the following error. The certificate 'Apple Distribution:… does not match … However the certificate exists on both the Windows Build Machine and the Mac Agent. This then results in the following error. C:\Program…
How to detect the flyout Open and Close in MAUI
I would like to detect the flyout open and closing event
Flyout IsPresented is property is not working as expected
I tried to determine whether the Flyout is presented using this approach: https://learn.microsoft.com/en-us/answers/questions/2200916/how-to-detect-the-flyout-open-and-close-in-maui It works fine in most cases, but I encountered an issue in a specific…
Using Segoe MDL2 Assets or Segoe Fluent Icons in cross-platform MAUI apps
The page here for Segoe MDL2 Assets says: "On a Mac, you need to download and install the font: Get the Segoe UI and MDL2 icon fonts" and the page here for Segoe Fluent Icons says: "On a Mac or other device: You can download Segoe Fluent…
Error creating a .NET MAUI project and attempting to use dotnet restore
Hello, I am attempting to create a .NET MAUI project. However, I am getting this error: PS C:\Users\javer\source\repos> dotnet new maui -n MauiCalculator The template ".NET MAUI App" was created successfully. Processing post-creation…
ACCESS ONEDRIVE
I have an MS account and use OneDrive. I am developing a .NET MAUI (8.0) app that should be able to access a specific folder in my OneDrive and download/upload files in this folder. The only authorization required should be my MS account. This task seems…
Change Output Folder Publish-> Create App
I've changed the location of a folder for my MS Store app, from C:\Projects_2024 to C:\Projects_2025. Previously when I went to Publish->Create App Packages... it create my msix in the Projects_2024 sub directory. However, now that I am building the…
MAUI: How to increase the slider height
I have a slider like below: <Slider x:Name="audioSlider" Grid.Row="0" Minimum="0" VerticalOptions="Center" HorizontalOptions="Fill" ThumbColor="Transparent" …