Custom fonts not working when uploading Maui Android project to Play Store
I have added custom fonts in the font directory of my Maui project's Resources directory and updated the MauiProgram.cs file accordingly. The fonts work fine when I deploy the application using Visual Studio, but when I publish the app and upload it to…
MAUI - Unable to add android java binding library
Hi, I am trying to add jar files to maui project as android java library. The android java library can built indipendently but when I refer thr library to MAUI project I am getting this exception Error: Project 'SDK/SDK.csproj' targets 'net8.0-android'.…
the skbitmap not work why paint on it?
SkiaSharp.SKBitmap bitmap = new SkiaSharp.SKBitmap(309, 60); var canvas = new SkiaSharp.SKCanvas(bitmap); var paint = new SkiaSharp.SKPaint(); paint.TextSize = 12; paint.Typeface = SkiaSharp.SKTypeface.FromFamilyName("Arial"); paint.Color =…
Issue with Xamarin.Android.Google.BillingClient - Returning Empty Product List in .NET 8 MAUI
Hello, I am currently using .NET 8 with Xamarin.Android.Google.BillingClient version 7.1.1 in my MAUI application. When attempting to retrieve product details from the Google Play Store, the BillingClient returns a successful response…
How to change the bacground and text color of MenuFlyoutItem?
Hi, How to change the bacground and text color of MenuFlyoutItem? <FlyoutBase.ContextFlyout > <MenuFlyout > <MenuFlyoutItem Text="Load external configurations" Command="{Binding…
Selected MenuFlyoutItem is transparent
Hi, In continue of https://learn.microsoft.com/en-us/answers/questions/2079247/how-to-change-the-bacground-and-text-color-of-menu there is another issue with selected MenuFlyoutItem is transparent See : How is can be fixed ?
Delayed Response in MAUI and Firebase Realtime Database
Here's a clearer version of your message: Hi forum, I'm facing an issue where Firebase Realtime Database doesn't respond immediately in my MAUI app (specifically with the GET method and displaying data on the Home Screen), whereas it responds instantly…
MAUI app crashing with release mode. Works fine with debud mode ?
MAUI app crashes with release mode. Works fine with debug mode. Targeting .net run time is .net 7.0. We are using a few syncfusion controls in our application. Those nuggets were up to date till now. Here are the crash…
Learnings from migrating from Xamarin Native apps to .Net
Since Xamarin is coming to the end of its life time Microsofts recommendation is to migrate the Xamarin native apps to .Net applications. https://learn.microsoft.com/en-us/dotnet/maui/migration/?view=net-maui-8.0. We have done the code level migration…
"Not In Keychain" Issue with Apple Distribution Certificate in Visual Studio, Xcode 16
Hello everyone, I'm having trouble getting my Apple Distribution certificate to show up as valid in Visual Studio 17.11.5 for a Xamarin project. In Xamarin Apple Accounts under Apple Distribution, the certificate appears as "Not In…
Showing System.Drawing.Bitmap in MAUI form?
Hello, I want to do a MAUI applciation able to read a USB camera from IDS and paint the incoming images in the main form. I'm able already to detect the camera initialise it and receive the incoming images. I'm able, also, to save those incoming images…
MAUI .NET 8 on Android - throwing an exception
MSBUILD : java.exe error JAVA0000: Error in C:\Users\jeeva.nuget\packages\xamarin.androidx.collection.jvm\1.4.3.1\buildTransitive\net8.0-android34.0....\jar\androidx.collection.collection-jvm.jar:androidx/collection/ArrayMapKt.class: 1>MSBUILD :…
How to access usb camera in maui on Android?
How can i access USB camera(web camera) on .net MAUI? The problem is that when if i list all the avalible cameras i only get front and rear one. If i list usb devices i see the cam but it is just the data about vendor and id num...
'No Matching Profile Found' While Selecting Distribution Profile For MAUI iOS Application In MAUI In Visual Studio MAC
Visiting developer portal of apple Created New App Chosed iOS platform Entered name, language, bundle ID (Same as in the source code), SKU with full access Save Added New Device Go to certificates, identifiers & profiles Chosen iOS…
how to drawText by GenericTypographic in winform?
in .net android (android application) I want to draw text which same like winform's GenericTypographic' but there is no such that in android? I create bitmap var bitmap=new Android.Graphics.Bitmap(150,36,Bitmap.Config.Argb8888); var canvas =new…
Error in adding footer to ListView in .Net MAUI
HI all, Please help as this error cites on code line: listView.Footer = footer; as below: Java.Lang.IllegalStateException Message=The specified child already has a parent. You must call removeView() on the child's parent first. when adding a new…
How to change Shell.Title font?
This is the current AppShell.xaml: <?xml version="1.0" encoding="UTF-8" ?> <Shell x:Class="MauiApp1.AppShell" xmlns="http://schemas.microsoft.com/dotnet/2021/maui" …
access tty ports
Hi, I try to access with the tty ports on my tablet but the use of _usbManager = (UsbManager)activity.GetSystemService(Context.UsbService); but the result is just the regular usb ports. i check in terminal ls -l /dev/ttymxc* and i get a complate…
Borderless editor
I am trying to get rid of the underline for the editor control, for Android, IOS, Mac and Windows this is my code <Grid Padding="10" RowDefinitions="Auto,*,Auto" RowSpacing="20"> <Label …
How to make "RefreshView" friends with "AbsoluteLayout"
public CollectionPage() : base() { collection.SelectionChanged += _OnSelectionChanged; collection.ItemTemplate = GetDataTemplate(); LoadedCollection(); refresh.Command = new Command(LoadedCollection); refresh.Content = collection; var fabButton…