All Questions
402 questions
0
votes
1
answer
55
views
.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 Distribution certificate and provisioning profile. However, when attempting to install the app on a physical ...
1
vote
0
answers
81
views
Resolver for the current activity is not set. Call Fingerprint.SetCurrentActivityResolver somewhere in your startup code
Getting Exception in MAUI app while trying to implement biometric on maui android using plugin.Fingerprint
the exception says: {System.InvalidOperationException: Resolver for the current activity is ...
0
votes
1
answer
31
views
How to set IconNotification Custom? Xamarin
I'm working on a Xamarin application in which I'm trying to set a custom Notification but I have not result using Xamarin.Firebase.Messaging 119.0.1
NotificationCompat.Builder builder = new ...
0
votes
0
answers
19
views
Xamarin Forms android application cannot reach the backend on devices running Android OS 13 or earlier after migrating backend to Cloudflare
I know, I know, dinosaur tech. But I have been tasked to figure this out. Any help would receive my eternal gratitude...
Over the weekend, my company migrated our server security to Cloudflare. ...
0
votes
0
answers
61
views
Internet speed is less on Android version 14 in Xamarin android app
While working on Xamarin android app I observed that the app is getting very low internet speed, specifically on android version 14 using mobile data bit working fine using WIFI. While the other apps ...
0
votes
1
answer
56
views
Dynamically change backgroud of a grid Xamarin
I want to change the background color of a grid based on what is the status. I made a converter which takes status and based of what it is changes color but for some reason after debugging it doesnt ...
0
votes
0
answers
31
views
Problems with Xamarin calling localhost API [duplicate]
I believe this problem had been asked before but I am getting really frustrated.
I am developing a Xamarin app and I need it to access an API that will do all transaction accessing a SQL DB.
I have no ...
0
votes
1
answer
132
views
Issue with adaptivity on Xamarin.Forms project
enter image description here
Before I start, I wanted to mention that, sadly, my English is not the best, so if you find any mistakes, I apologize. Now, onto the main topic: I am a young student from ...
1
vote
0
answers
219
views
.NET Maui App same DisplayAlert showing up multiple times on the same page
I have a helper class that displays some alerts like this:
[...] // other code
public class Alerts{
public Alerts() {}
public async Task AlertMessage(){
await App.Current.MainPage....
2
votes
1
answer
476
views
Zebra SE4710 EMDK Atol Smart Slim Plus . Stub (NullReferenceException)
I have following code in my MainActivity file
Row
EMDKResults results = EMDKManager.GetEMDKManager(Android.App.Application.Context, this);
gives a runtime exception: Java.Lang.RuntimeException: 'stub' ...
0
votes
0
answers
346
views
Clicking on a custom .NET MAUI Entry causing the screen to disapear
I'm fairly new to .NET MAUI, and I'm taking an old, out of date Xamarin app that hasn't been touched in a few years and manually converting and updating it. I'm having an issue where a ...
0
votes
0
answers
53
views
Xamarin.UITest find element in ios application using REPL and tree command
I am trying to run IOS tests using xamarin. the same test automation is running on android.
tree:
tree image
REPL tool after querying all elements :
app.Query(c=>c.All())
enter image description ...
0
votes
1
answer
107
views
Scrolling Recyclerview should cover the Toolbar
I need a Toolbar with some height to stick at top. below it there is a Recycler-view. When this recycler-view is scrolled, it should cover the Toolbar and when scrolling back down, the toolbar appears....
0
votes
0
answers
64
views
Navigation in OnAppearing() method works wrong
I got 2 pages FirstPage which is Content and SecondPage which is Tabbed page
FirstPage contains OnAppearing method
protected override void OnAppearing()
{
if (Preferences.Get("...
0
votes
0
answers
195
views
OnAppearing() method being triggered at wrong time
I have a Maui application, so called Product_Service where you can add product/items, remove or change them.
Now to the problem, here i set my MainPage to HomePage
public partial class App : ...