Infinite loop in SaveCommentOnBlur when Unfocused event is triggered in MAUI
In my custom MAUI entry control, the SaveCommentOnBlur method gets stuck in an infinite loop when the EntryField_Unfocused event is triggered. This causes the keyboard to hang, and either the keyboard or the app becomes unresponsive. Steps to…
Invalid dex file indices" Error in Net Maui
Hi, I get the following error when publish Android app. [BT : 1.8.1] error : Invalid dex file indices, expecting file 'classes?.dex' but found 'classes2.dex' Steps: Create a new Maui app Copy keystore file created using Xamarin…
NET MAUI Splash Screen Not Displaying logo.png on Android 14 and 15
I am developing a .NET MAUI application and facing an issue with the splash screen when installing the app on physical devices running Android 14 and 15. The splash screen only displays the purple background, but the logo.png image (with a white…
Java.Lang.ClassNotFoundException Didn't find class "androidx.core.splashscreen.SplashScreen" on path: DexPathList
I get the following error in Activity1.cs in my Android project: protected override void OnCreate(Bundle bundle) { AndroidX.Core.SplashScreen.SplashScreen.InstallSplashScreen(this); Java.Lang.ClassNotFoundException Message=Didn't find class…
In MAUI it will re-open my APP when I quit and open another app
in MAUI Platform IOS: I open my app and open Page1 and then tab the screen to open another APP and then quit that APP then return to my APP the Page1 is disappeared and it is the home page. does it closed and re-open? how to keep the Page1(or other…
increase the bindings performance
Hello happy new year to everyone I am trying to increase performance on my xaml Since I updated to .Net 9, I got this warning Binding was not compiled because it has an explicitly set Source property and compilation of bindings with Source is not…
Refresh the map
I need some help in refreshing the map, when the internet is back on Since the map doesn't have any refresh, I am using the pages stack to reload the page interface public interface IAppService { Task NavigateToPage(string pageName); …
test return value after executing NavigateToAsync command
The following code works perfectly. but now I want to test the value returned in a global variable. (this is an inventory system with a multi column checklist page that calls and populates the infopagemodel when I tap an item/line , so that I can…
Firebase Analytics not logging events in MAUI .net9 for both iOS and Android ?
Hi, Firebase dashboard is not registering any logs for my MAUI app. I am using Xamarin.firebase.Analytics for Android and AdamE.Firebase.iOS.Analytics for iOS. .csproj <ItemGroup Condition="'$(TargetFramework)' == 'net9.0-ios'"> …
How set Custom Info Window in .net maui Android?
I have Implement customization in map. In which I have created cluster of pin and when click on pin a custom Info Window need to be open. After spending couple of hours I found that the issue is that need to set InfoWindowAdapter in clustermanager. But…
I get the error Could not find a part of the path C:\... when I install a NuGet package
I get this error when I try to install the NuGet package Xamarin.Firebase.iOS.Crashlytics version 8.10.0.3 in Visual Studio on Windows: Could not find a part of the path…
WebView Navigated Event Not Triggered in .NET MAUI
I am experiencing an issue with the WebView control in my .NET MAUI app where the Navigated event does not fire after navigation. Here’s the scenario: The Source property of the WebView is set to a valid URL. I have subscribed to the Navigated event…
Is it possible in .net Maui to get access to the current binding for a bindableproperty?
I want to be able to access the binding for a bindable property not the bound value the BindingBase that was created that controls the binding process. Specifically I want to get the path that was specified when the binding was created (usually in…
.NET MAUI and flutter
I’m still new to .NET but have a basic understanding of C#. I’ve also worked with Flutter, but I find its extensive widgets overwhelming and hard to read. This has made me consider focusing on .NET instead. For someone relatively new to .NET but familiar…
.NET MAUI Migration from Xamarin.forms
Hi, as a result of migrating from xamarin to .NET MAUI, using the migration tool “Upgrade Assistant” provided by microsoft, I have resolved the various errors related to solution compilation. The code compiles correctly and even manages to emulate on…
unexpected behavior when navigating between pages in my Maui App using AppShell .
I'm using AppShell for navigation in my .NET MAUI application. However, sometimes when I click on a menu item, an unexpected new line appears at the top of my app. This line remains visible until I completely exit the application. What could be causing…
Burn Selected Folders/Files in CD-Rom
Hi, I have treeview of drive/folders + files as you see . While pressing on copy command I copied the selected files to temp folder. I want code that will burn this files with all folder structure not only the files to CD-ROM. Can you please supply all…
Unable to display alert after modal popup
I have an issue I am unable to solve. In this code: var popupPage = new myPopup(); var taskCompletionSource = new TaskCompletionSource<bool>(); // Set up an event to resolve the task when the modal is dismissed popupPage.Disappearing += (s, args)…
iOS app crash in release mode
My iOS app crashes after installation on a device through distribution, but it works fine in debug mode. How can I check why my app crashes after installation on an iPhone? I am using the latest .NET 9.0.
The Webview does not display PDF
iOS is displaying pdf but android WebView does nothing. I want to open a pdf from a web resource on WebView. But the WebView does not render the pdf. On the other hand the webpages are displayed on WebView without any problem.