4,225 questions with Developer technologies | .NET | .NET MAUI tags
Issue with API calls; initially the API is called with blank push id and later it will call with exact push id
I have implemented push notification in my project using Plugin.Firebase package. My problem is on saving the FCM id to database API. I am generating the FCM token on login page constructor and saving it to preferences like below: public…
Developer technologies | .NET | .NET MAUI
Getting weird errors testing maui app on ios
tried testing my maui app on ios, I paired to mac then selected a Iphone 17 with an ios of 26 and i keep getting these errors. The same for if i plug my iphone into my mac device and select it as a remote device. Ive also tried doing the update to 10,…
Developer technologies | .NET | .NET MAUI
MAUI .Net10 app crashing on startup only when installed from Google Play
Hi all, I've just upgraded VS to 2026, which I use to develop mobile MAUI project. That involved targeting .Net 10 (.NET MAUI Tools 18.0.345 (fbde6c01f0)) instead of .Net 9. in the MAUI project. The Android app works perfectly in debug or release mode…
Developer technologies | .NET | .NET MAUI
This version of .NET for iOS (26.0.9752) requires Xcode 26.0. The current version of Xcode is 26.1. Either install Xcode 26.0, or use a different version of .NET for iOS.
I get this error after updating Xcode on my Mac today: This version of .NET for iOS (26.0.9752) requires Xcode 26.0. The current version of Xcode is 26.1. Either install Xcode 26.0, or use a different version of .NET for iOS. See…
Developer technologies | .NET | .NET MAUI
How can I make screenshots and videos in the correct resolution from my game so that I can add them to the App Store?
I have already tried to make a short video from my game. My iPaid Air was connected to my MacBook Air and I have played my game on my iPad Air and simultaneously I recorded a video with the QuickTime player. The video has the following…
Developer technologies | .NET | .NET MAUI
.NET MAUI Android: Custom Gesture Recognition and TalkBack Compatibility Issue
Hi everyone, I am working on a .NET MAUI project for Android and I want to implement gesture-based shortcuts to improve the user experience. For example, I want to trigger specific actions when a user draws an "L" shape on the screen. However,…
Developer technologies | .NET | .NET MAUI
how to get that when the bytes is sent completed in maui?
I am using .net maui and I am sending bytes using BLE. may the bytes is 5 bytes or 5000bytes. and how to get when the bytes is send completed. ? in ios I am using Peripheral.WriteValue and in android I am using Characteristic.SetValue
Developer technologies | .NET | .NET MAUI
How to Implement Google Maps in a .NET MAUI Blazor App.
I'm currently developing a .NET MAUI app using Blazor and targeting .NET 7. One of the key features I'm looking to implement is integration with Google Maps to display locations of customers. However, I'm facing challenges with integrating Google Maps…
Developer technologies | .NET | Blazor
Developer technologies | .NET | .NET MAUI
My app freeze when I am trying to select a language
This is my app viewModel namespace TextileSystem.ViewModels; public partial class MainPageViewModel : ObservableObject { private readonly ILocalizationResourceManager _loc; [ObservableProperty] public partial bool IsConfigurationsOpen { …
Developer technologies | .NET | .NET MAUI
How to remove the listView pressed/activated ripple drawable to the entire row
I have a listview like below to show the question and answers. <ListView HasUnevenRows="True" HorizontalOptions="FillAndExpand" ItemsSource="{Binding ItemsSource, Source={x:Reference this_flow_picker},…
Developer technologies | .NET | .NET MAUI
Scrollview Doesnot work inside MAUI community toolkit popup
I have a simple layout. like <toolkit: popup> <border> <scrollview> <verticalstacklayout / </scrollview> </border </toolkit: popup> My scroll view is not working. it works in content page only fails in…
Developer technologies | .NET | .NET MAUI
What can I do when the debugger always crashes on my iOS device but works fine on the iOS simulator?
I found out that the debugger always crashes shortly after I started my application on my iPad Air 26.2. I have tried to set a breakpoint in different lines and different classes but it always crashes. The application automatically crashes 1-2 seconds…
Developer technologies | .NET | .NET MAUI
MAUI app issue
Hi, Does it call API to write one file into the remote server (with the given IP). Any demonstration to this?
Developer technologies | .NET | .NET MAUI
Excluding shell and continuing the navigation with content page as in maui same as using the traditional method in xamarin
I am attempting to migrate a Xamarin cross-platform app to MAUI. I am utilizing shell as the Navigation root page for the app. The Xamarin application employs a conventional approach for navigation by establishing a flyout page, which is then linked to…
Developer technologies | .NET | .NET MAUI
Bluetooth connectivity issue in Migration to MAUI from Xamarin
I have migrated all the views and viewmodels in a MAUI project from xamarin to MAUI technology. I am trying to connect Bluetooth in a page where I have included all the NuGet packages required to connect to the Bluetooth. I wanted to open my Bluetooth…
Developer technologies | .NET | .NET MAUI
Where is HybridWebView.js in NET10?
Hi everyone, I'm migrating a project to .NET 10 that uses HybridWebView to host a Vue.js application. In .NET 9, everything worked correctly, but in .NET 10, I'm unable to use the standard InvokeDotNetmechanism. Every time the Vue app tries to call a C#…
Developer technologies | .NET | .NET MAUI
Is there a common .NET MAUI implementation for AccountManager / AccountAuthenticator?
Hello team, I have a question regarding authentication in .NET MAUI. On Android there are built‑in classes such as AccountManager and AccountAuthenticatorActivity that allow applications to create accounts, list them in system settings, and obtain…
Developer technologies | .NET | .NET MAUI
.Net Maui Fatal Exception, probably while overring MyWindow.
Hey, I came across a fatal exception. My hint is that something is happening while overriding Window. This is my class where I inherit from Window. And in App.xaml.cs I ovveride it and returning MyWindow using as a parameter MainPage. I think that when…
Developer technologies | .NET | .NET MAUI
Where can I find the new HybridWebView.js
Hello, I upgraded my .NET MAUI project from 9 to 10 and now my InvokeDotNet-Method from the HybridWebView.js doesnt work and I found online that the file gets updated, but I cant find the new file in the sample project…
Developer technologies | .NET | .NET MAUI
FAKE ERROR REPORTING
In my MET MAUI app I have a popup where the user is supposed to enter a password. Following is a partial snippet: <Entry x:Name="password" IsPassword="True" HorizontalOptions="Fill" /> <Button Text="OK"…