How to connect Algolia whit MAUI
i want to connect Algolia to my aplication developed on MAUI but i don´t know why it doesn,t work. I worked using DeepSeek and ChatGPT but they codes Doesn´t work i don´t know what more can i do i used the Algolia NuGet for MAUI but isn´t work or i tried…
pick appropriate .json data in Tab (ShellContext)
As a senior+ hobby developer I'm stuck. I know - whoever helps - this is not what this GitHub forum is for and, I know, this is an imposition! Anyway, hopefully somebody has some time and is willing to help, thank you. my APP:…
.NET MAUI error after binding android library (.aar)
I am using android library called "autoreplyprint.aar" , this library contains another.jar file called "jna-4.5.1.jar". I have used following code to bind it in my MAUI project, <ItemGroup…
failed with HTTP status code 'Unauthorized'.
Hi, Why I suddenly started getting this error: /Users/jassim/Projects/OneID/One ID API/Controllers/Account.cs(116,9,116,15): warning CS0162: Unreachable code…
Is there a sample MAUI application to call c/c++ libraries that can be built from Windows and used on Windows, iOS and Android?
I am trying to convert my Xamarin.Forms mobile applications to MAUI. My applications depend on C libraries developed by government agencies (NOAA and USNO). For Xamarin.Forms I found a very good example for building a NuGet package from C library code…
App is crashing which swiping in carousel view in maui
I had implemented the carousel view in android, When im swipping app is getting crashed.
MAUI: Firebase Analytics iOS.
I'm trying to configure the Firebase in my library project, but when the sample project references the library project, I get an error when compiling. (Not when compiling the library, but the project.) I'm using Xamarin.Firebase.iOS.Analytic and…
"Missing Info.plist value. The Info.plist key 'BGTaskSchedulerPermittedIdentifiers' must contain a list of identifiers used to submit and handle tasks when 'UIBackgroundModes' has a value of 'processing'
I am trying to upload my maui ios app on transporter and getting this error: what i have tried so far is <key>BGTaskSchedulerPermittedIdentifiers</key> <array> <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> …
MAUI: How to update the webview height after loading new content
I want to implement the below UI in my MAUI application (header and footer sections are not added): Below is my code (header and footer sections are not added): Webview to show HTML content(with a background image), Audio frame with previous, play and…
Blank space is showing after webview when loading new content in MAUI
I want to create a UI with a Label(title), image(saint image) and a webview(to show HTMl content). When scroll I want to scroll the entire item, not the webview contents only. After all these I need a section to show the audio player with previous, next…
Dirty log in login
Hi, I used log4net. When login I got this errors in the log, what it come from? Thanks. 2025-03-12 15:25:00,516 [1] ERROR GssdDesktopClient.Maui.ViewModels.LoginViewModel - LoginCommand System.InvalidOperationException: PlatformView cannot be null here …
What to do; When load web appear menu "Item" right hand and click menu show picture left area We use Blazor Assembly standAlone.
1.TShirtItem.cs namespace TestBlazorApp.Models { public class TShirtItem { public string Name { get; set; } public string ImagePath { get; set; } } ```} 2.TShirtItem.razor @page "/tshirt-items" @using…
Publish - Move to Framework Independent did not work
Hi, I have MAUI app in .NET 9. When making setup with installshield i first install dotnet runtime 9. and later include Maui app + WPF app + stand alone app- log decoder in one setup. The app call in runtime to WPF application using Process Info…
Publishing MAUI Project on Windows: Grayed Out Option
I want to publish my MAUI project on the Windows platform, but the publishing option is grayed out. What steps can be taken to resolve this issue? Here's my C# project configuration: <Project…
I'm experiencing problems with EF and SQL Server when running on Azure Webservice. The same code runs fine from VS with same db.
If I turn debugging on and connect my VS to the process, the error doesn't occur. Also I can run the code just fine from Visual Studio towards the same database. I do not Lazy Load. All Queries ens with ToFirstAsync() or ToListAsync() and has a Select to…
Optimizing WPF Application Startup Time on Shared Network Drive
My team is facing an issue when publishing the application on a shared network drive. When an end user opens the program for the first time after starting their computer, it takes significantly longer compared to running it from the local C drive (18…
NAVIGATION WITH WINDOWS MACHINE
I have a program where the MainPage contains a menu: <TableView Intent="Menu"> <TableRoot> <TableSection> <TextCell Text="Welcome" …
.NET MAUI iOS Release Build Requires Developer Mode to be Enabled on Physical Device
I have developed a .NET MAUI iOS application and successfully created an .ipa file using a release certificate and provisioning profile. However, when attempting to install the app on a physical device, I encounter the following error: "This app…
Selected Item Binding is not working for the Picker.
Hello, I had picker, I want to explicitly bind the selected item. I mean before the user selection iteself i want to display an item in the picker. here is my picker. <Picker x:Name="languageSelectionPicker" …
Picker.Focus() Not working in Windows - MAUI
Hello, I had a layout, Basically on tapping on that layout, I want to focus my picker. Unfortunately. picker.focus() is not working. Thanks.