Webview not working in MAUI
I had created a sample MAUI solution with the .Net 9, and added a webview. and added the following piece of code in the mainpage.xaml <StackLayout Padding="30,0" Spacing="25"> <WebView…
Workaround for WebAuthenticator crash affecting Android on .NET MAUI
When using WebAuthenticator for .NET MAUI and the browser first launches, the app crashes in the background. When the app is relaunched, the browser can be opened again and the WebAuthenticator process succeeds without a problem. This affects Android and…
Is it possible to deploy a .net maui application on Android Go Edition
Is it possible to deploy a .net maui application on Android Go Edition?
Create an IPA from Windows MAUI iOS + Extensions
Hi, we have a MAUI project with iOS extensions. We can run them on emulators and create the IPA either in Visual Studio or Visual Code on a Mac. Due to dotfuscator issues, we need to create the IPA, but now from Windows! We can create the IPA using the…
Detect Scrolled to end of webview to enable a button in maui
I have a custom renderer like this where ScrollWebView is my custom control from webview with IsBottomReached property. I tried registering this Renderer in mauiprogram class, then it started crashing with an exception of "Specified cast is not…
Why does Live Preview not work on my VS 2022 maui project
Hi, I am using VS 2022 and have a .NET MAUI project. The issue is that Live Preview doesn't seem to work. I watched the video here: https://www.youtube.com/watch?v=nEOvX3YKw_E However, I get the error shown below and I don't have the debug…
MAUI: Notification icon is blank in Android 15
I am using below code to show the push notification icon in my MAUI application: private void CreateNotificationChannel() { try { var channelId = $"{PackageName}.general"; var notificationManager =…
FlyoutPage.Flyout Width
Hi, How I set in windows net 9 the width of FlyoutPage.Flyout(menu)? Thanks,
BINDING DOES NOT RECOGNIZE TYPE
I have a custom component that exposes a property 'Amount64' of type Int64; I would like to bind it to a property 'Amount', also of type Int64, in the host page: <components:MyNumericKeyboard x:Name="keypad" Amount64="{Binding Amount,…
Undefined symbols for architecture arm64 Error, while using Native libraries in MAUI iOS
Hi, We are working on MAUI.iOS migration project from Xamarin.iOS. In Xamarin.iOS we have used few iOS Native libraries(.a files). The Xamarion.iOS project was working fine. But we used the native libraries in MAUI.iOS project we are getting below build…
My app breaks if I add LoginViewModel
For some reason my app breaks, when I add the loginViewModel to the mainPage I am using firebase, so I register the user, and navigate to the Main Page builder.Services.AddTransient<RegisterPopUp>(); …
ORIENTATION BEHAVIOR
Consider the following simple test program, in NET MAUI 8.0: <?xml version="1.0" encoding="utf-8" ?> <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" …
AADSTS165000: invalid Request: The request tokens do not match the user context,
MAUI. Android app, use Oauth2D to login. Always get the error: Requestld:50664542-03a0-48dc-b330-acf123cf9f00 Correlationld:27fdf9bd-1dd4-4b3b-a556-34f7c03c17af Timestamp:2025-04-02T02:58:37Z Message:AADSTS165000: invalid Request: The request tokens do…
Images show up on other devices but not windows build
Hi, I am building a .net maui application my .png's show up on android and android emulators But I am unable to get the same image on windows build, or any image for that matter of fact Here is the code that use. var var image = new Image() { …
.NET MAUI - Camera View - Images Portrait
Hello, I'm using CameraView from CommunityToolkit.Maui.Camera, and I take photos that I display in another view. When I take the image with the iPad in portrait mode, the photo I took displays fine. I even save it to disk and display it later in another…
I am providing the icon still facing issue in .net maui single structured project
Validation failed (409) Missing required icon file. The bundle does not contain an app icon for iPhone / iPod Touch of exactly '120x120' pixels, in .png format for iOS versions >= 10.0. To support older versions of iOS, the icon may be required in the…
Crashing while opening the webview in maui - Net 9
Recently we had migrated our application from the .net 8 to the .net 9. we are having the web view in our application. in the .Net 8 the webview is working fine. where comes to the .net 9 the application is crashing while opening that page with the…
the rotation is not work as expected?
I am using .net-android and want to use canvas to draw cube and rotate it.this is the code:`public class XyCube { public float width; public float height; public Color Color; public float center_x; public float center_y; public float…
can not add this jar file to .net android?
this is jar file which to search BLE I can use it in android but can not use it in .net-android WCHBLELibrary.log you can rename this file to jar I create in android binding project and add it. and get dll file and add it to .net-android. If I call the…
How to cancel navigation to a page in .NET MAUI
Please tell me how I can stop navigation to a page in a .NET MAUI Shell app if, for example, the user is not authorized to access the page. I have a nice authentication system and I have access and refresh tokens for communicating with the server, but…