"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…
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…
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…
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…
SSlStream Authentication failing in .NET MAUI Android app whereas same is working in Xamarin.forms
have connected to Controller via WiFi from .NET MAUI Android app and TLS is enabled in connected Controller. From .NET MAUI Android project, I am trying to authenticate SSLStream with below code SslStream _secureStream = new SslStream( new…
realtime update
I have a service, that is uploading to firestore async Task LoadOrInitializeTurbineAsync() { var turbinesRef = _firestoreDb!.Collection(collectionName); var snapshot = await turbinesRef.GetSnapshotAsync(); if (snapshot.Count ==…
Can't center Shell Title on Android
Can't for the life of me figure out a way to center the Shell Title on Android as it's on the left (start) on Android vs the center on iOS, I want to make both centered. Original AppSheel.xaml code: <?xml version="1.0"…
XML Xml Serialization error in MAUI iOS
Good afternoon. We are developing a mobile application for iOS on MAUI (.net 9-0). When using the Apple development profile, our application is assembled and deployed on the device without any problems (using the IDE Rider). But when we change the Apple…
Adding Entitlements.plist for securestorage in maui throwing error related to Entitlements.xaml
my Entitlements.plist contents is as follows <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist…
Text localization
I want to add the ability to use languages in my application, but from what is written in the doc. it is not clear at all. I am interested in a couple of questions. In which folder to create resource files. You can use the Resources/Languages folder,…
It is not clear how the "LineHeight" property works for the "Label" element
Contains code for the class "DataTemplate" var offerPrice = new Label { FontSize = 40, LineHeight = -2, BackgroundColor = Color.FromArgb("#fff") }; offerPrice.SetBinding(Label.TextProperty, "price"); return new Border…