Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
59 views

I’m currently working on a .NET MAUI project, and I’ve noticed that it doesn’t have as many plugins as Xamarin.Forms, which makes it harder to build more modern or visually appealing UI elements—...
Keru David's user avatar
0 votes
1 answer
34 views

I'm building a dotnet maui application. One of the targets that I am using is Mac OS X maccatalyst. My app consists of a hybrid web control that goes into the safe area with negative top margin so ...
chris's user avatar
  • 83
0 votes
0 answers
50 views

I recently installed Visual Studio 2026. My program is written in F# with MAUI. With Visual Studio 2022 it was working so far, since I installed VS 2026, it fails on VS 2022 as well. Prior VS 2026 I ...
Alex_P's user avatar
  • 3,032
0 votes
0 answers
28 views

I am using .NET MAUI 10 with CommunityToolkit.Maui. I previously used CommunityToolkit.Maui v9.1.1, and in that version, I could open a popup from another popup without any issues. After upgrading to ...
modab's user avatar
  • 41
-3 votes
0 answers
28 views

Severity Code Description Project File Line Suppression State Error (active) CS1503 Argument 1: cannot convert from '_XamlGeneratedCode_.__Type0E459CAF0A856A27' to 'Microsoft.Maui....
Ehsan shobeiry's user avatar
0 votes
0 answers
56 views

I recently updated my Visual Studio to the newest version (2026). Since I updated, my Android devices no longer appear in the list of devices. But even worse, since the update they don't appear in my ...
Kristof Van Moorter's user avatar
0 votes
0 answers
46 views

I created a quite simple .NET MAUI App. For now it only implements a WebView with a source: MainPage.xaml.cs public MainPage() { InitializeComponent(); WebView webView = new WebView { ...
Spikeeins's user avatar
0 votes
0 answers
124 views

I'm trying to debug and run a .NET MAUI Android app targeting .NET 9 in JetBrains Rider (2025.1.3). SDKs installed: 9.0.308 [C:\Program Files\dotnet\sdk] 10.0.100 [C:\Program Files\dotnet\sdk] ...
Antonin937's user avatar
-1 votes
1 answer
59 views

I've recently upgraded from .NET 9 to .NET 10. My MAUI app runs on both Windows and Android and uses AppFlyout rather than the conventional AppShell. When running the app on Android 15 the flyout ...
user3017691's user avatar
0 votes
0 answers
31 views

I'm getting an exception when trying to open a Page View that uses any CommunityToolkit.Maui view/control. I am building the app with .Net MAUI 10 <MauiVersion>10.0.10</MauiVersion>. I ...
qqqqqkks's user avatar
  • 257
-7 votes
0 answers
106 views

I'm trying to build a three piece Streaming Project in which I need to build an API that is already working, a Java App for Android that I haven't even started and this .NET MAUI using C# that is ...
Pedro's user avatar
  • 1
-1 votes
1 answer
61 views

I am working on a MAUI windows application. I made a resource directory file for font.xaml in Resources\Styles and configured it in App.xaml. <ResourceDictionary xmlns="http://schemas....
RMR's user avatar
  • 627
5 votes
1 answer
125 views

I’m using ZXing.Net.Maui in a .NET MAUI 9 app to scan barcodes. QR codes work perfectly, but Code128 barcodes with 26 characters are either: not recognized at all, or recognized incorrectly (wrong/...
Spring Elk's user avatar
0 votes
0 answers
55 views

I'm working on my first MAUI app. It consists of two screens, switchable via a tab control. Now to my issue - I have page MainPage.xaml with MainPage.xaml.cs and also AboutPage.xaml with AboutPage....
Martin Toman's user avatar
0 votes
0 answers
87 views

I tried adding a migration via dotnet ef migrations add InitialCreate but got the following error C:\Users\tmsta\OneDrive\source\repos\Server Default\TrevorsTempMonitorApp\TrevorsTempMonitorApp.csproj ...
Trevor Stauffer's user avatar
0 votes
1 answer
61 views

I am trying to use the new .NET Maui Aspire integration to make my development life easier and I cannot get the service discovery to work where the app detects the API's URL. I'm following this https:/...
Andrew Shaw's user avatar
0 votes
0 answers
39 views

I have my application written with NET9 MAUI. I use Visual Studio 2026. The application is working in debug. When I deploy in Release, the application crashes immediately. The error log is quite long, ...
Enrico's user avatar
  • 6,872
0 votes
0 answers
41 views

In my NET9 MAUI application, I try to implement the deeplink following the Microsoft documentation. When I send a request, it gets to the OnCreate in the MainActivity. [Activity(Theme = "@style/...
Enrico's user avatar
  • 6,872
-2 votes
0 answers
65 views

After upgrading to ZXing.Net.Maui version 0.6.0, my .NET MAUI Android application fails to build with a dependency conflict error. Error Message error NU1107: Version conflict detected for Xamarin....
Cezar Wagenheimer's user avatar
3 votes
1 answer
59 views

I'm trying to have a Syncfusion Popup in my app. Because of the size and for reusability I put the Popup's content into a separate ContentView. However this makes the Binding to the content fail. I ...
Thorsten Schmitz's user avatar
Advice
0 votes
1 replies
29 views

In MAUI project, can I use something like this ApplicationDisplayVersion = 1.0.130-Dev ApplicationDisplayVersion = 1.0.134-Prod As per the documentation it should be maximum 3 part "1.0.0" ...
ViBi's user avatar
  • 727
3 votes
0 answers
86 views

I have a .NET 10 MAUI app configured with Aspire 13. When I start the Aspire project and the dashboard launches, I ensure that the emulator is running. Steps to reproduce Start Visual Studio Create a ...
James D's user avatar
  • 11
0 votes
2 answers
137 views

I have several .NET MAUI 9 and Xamarin.Forms apps in production, all connecting to an Azure Web App with two instances and a direct HTTP endpoint that handles hundreds of requests per minute. Lately ...
Rocco Mattia Di Mauro's user avatar
0 votes
0 answers
70 views

I can't find the solution for errors in the BluetoothService class in .NET MAUI. I get 2 errors: bluetoothService does not contain a definition for SerialPort bluetoothDeviceInfo does not contain a ...
Wilco Van Niekerk's user avatar
0 votes
1 answer
102 views

I have a MAUI app. The initial XAML markup looks like this: <mops:PopupPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns:mops="clr-namespace:Mopups....
Bob Gatto's user avatar
  • 166
0 votes
1 answer
75 views

I have a CarouselView on my HomePage. Each item in the CarouselView has a TapGestureRecognizer attached, which navigates the user to a details page for the tapped item. The Problem The app loads the ...
Adrián Romero's user avatar
1 vote
0 answers
51 views

What is the last version of Android that is supported for Xamarin Forms? I'm trying to update my app to the last possible version of Android for Xamarin Forms. I know I'll have to switch to MAUI ...
t_m27's user avatar
  • 143
0 votes
2 answers
139 views

In a .NET MAUI 9 app I use PdfSharp.Maui (1.0.5) to create a pdf document. I don't use PdfSharp.Maui directly but rather PDFsharp which is a transitive package: using (PdfDocument document = new ...
dpant's user avatar
  • 2,234
-6 votes
3 answers
125 views

How can I disable the keyboard for a specif entry? I have tried using the MAUI Community Toolkit but have had no success.
Sachin Bali's user avatar
0 votes
1 answer
63 views

So I am using the libVLC Package for my .Net MAUI App to Stream some Media on an Android tablet. As a guideline i was using the libVLC Maui Sample from here: https://code.videolan.org/videolan/...
Pjottn's user avatar
  • 1
0 votes
0 answers
56 views

After updating my Mac to macOS Tahoe 26.0.1 and Xcode 26, the XAML Hot Reload in my .NET 10 MAUI projects stopped working. When I make any XAML change, the app stays unchanged and the output shows: ...
Matan Yamin's user avatar
1 vote
2 answers
65 views

I am trying to figure out exactly how the iOS bundle identifier of a .NET MAUI project (.NET MAUI 9, VS 2022 17.14.16) is determined. Here's what I want to do: The bundle identifier for iOS should be ...
dpant's user avatar
  • 2,234
0 votes
1 answer
73 views

I'm having an issue with a ScrollView on iOS after upgrading to .NET 9 (MAUI). The ScrollView area appears (the white/scrollable area is there) but the text inside is not visible at all. On Android ...
Arno Leruste's user avatar
0 votes
1 answer
41 views

This .NET MAUI application seems to work ok on Android, both audio types play. But on iOS (iPad connected to my Mac which is connected to my Windows VS2022), once the _audioStreamer.StartAsync(); is ...
Gratzy's user avatar
  • 3,083
2 votes
1 answer
85 views

I just got my .Net 9 Maui app working with EF Core and SQLite. I have one row of data in the database that looks like this: I have a simple query that runs when the app loads. The repository method ...
USMC6072's user avatar
  • 832
1 vote
1 answer
81 views

I'm trying to run my app on the Android emulator, which has worked fine for months. Now it sits there on the Settings screen (and does not respond to mouse input). VS is stuck at "Waiting for ...
Easy Rhino's user avatar
1 vote
0 answers
93 views

I have a .NET 9 MAUI Windows application. I'm trying to publish it using the following command : dotnet publish --framework net9.0-windows10.0.19041.0 --configuration Debug --self-contained ...
Thomas Carlton's user avatar
0 votes
2 answers
88 views

I'm trying to configure a new Maui app to use EF and Sqlite following this guide: https://learn.microsoft.com/en-us/dotnet/maui/data-cloud/database-sqlite?view=net-maui-9.0 For a long time I got an ...
USMC6072's user avatar
  • 832
0 votes
0 answers
43 views

I am trying to create an Azure Pipeline to build the APK for .net MAUI project. Pipeline on run failing with below error. * C:\hostedtoolcache\windows\dotnet\sdk\8.0.414\Sdks\Microsoft.NET.Sdk\...
XaMAUI's user avatar
  • 392
1 vote
0 answers
105 views

I'm using .NET MAUI and targeting iOS 26. I have an Entry like this: <Entry Text="{Binding ItemQuantityInput, Mode=TwoWay}" Placeholder="Enter Quantity" FontSize=...
Deon's user avatar
  • 11
0 votes
1 answer
240 views

I am working on a .Net MAUI Android app which is built on .net 8 and Android framework target version is API 34 (Android 14). I am not planning for upgrading my app to target API 35 soon. But I need ...
XaMAUI's user avatar
  • 392
0 votes
0 answers
63 views

I have a .NET MAUI application (targeting .NET 9) that runs on Windows. In the same repository, I also have a separate Appium-based UI automation project (using .NET 8), which drives the MAUI app ...
Aswin M's user avatar
0 votes
1 answer
84 views

After I finished coding in maui,i began to build a mobile app in android.And met this problem.
jie xiao's user avatar
Advice
5 votes
3 replies
603 views

I'm working on a small tool in C# and using .Net MAUI. Part of it is loading a website and parsing a list of items from that site. I can load and parse the elements, but the site has a "load more&...
Thorsten Schmitz's user avatar
0 votes
1 answer
50 views

I'm using LibVLCSharp.MAUI in my MAUI app to access RTSP cameras. Everything works fine in Debug mode both for Android and iOS, then when attempting to publish the app in the stores I noticed first ...
Luis Alberto's user avatar
0 votes
0 answers
50 views

I am new to MAUI. Facing issue in MAUI project to build android apk. I am using VSCode in my macbook air laptop. When I run with the real device connected, it works fine. But when I try to create a ...
M.K's user avatar
  • 11
1 vote
0 answers
59 views

I'm working on a .NET MAUI Android app that sends order data to a Web API using HttpClient. On normal Wi-Fi connections everything works fine, but when I throttle the network speed to around 56 kbps (...
Lasitha Lankajeewa's user avatar
1 vote
0 answers
323 views

I have a .NET MAUI Shell application with a Flyout menu targeting .NET 9. The Action Bar in both Light and Dark mode is set to be black. I want the hamburger menu icon and the back button to be white ...
ChrisJ's user avatar
  • 211
2 votes
1 answer
96 views

My NET.MAUI Android app is throwing SSLPeerUnverifiedException: Hostname 192.168.100.2 not verified when sending POST request to a PHP script located on my desktop's IIS localhost, as shown below. ...
Stanislav Panferov's user avatar
1 vote
1 answer
63 views

I'm fighting with bindings in a CollectionView, enough time wasted! The data model class is called Event. An ObservableCollection of these is bound to the CV. I am trying hard to stick to MVVM so I ...
Easy Rhino's user avatar

1
2 3 4 5
184