admin管理员组

文章数量:1346189

I am trying to make a .NET MAUI app in Visual Studio 2022, and I am experiencing a recurring crash issue immediately after the login screen. The problem occurs as follows:

I start Visual Studio and run the project – everything works fine.

After restarting Visual Studio, the app crashes after the login page.

If I discard changes to a specific .dll file using GitHub Desktop, the app works again.

However, after debugging and restarting Visual Studio, the crash happens again.

My colleague experiences the crash every time after the login page, regardless of what he does. (We work together on the project with Github)

Debug Output (Last Logs before Crash): scss

[libc] Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x7dc5a323b01f in tid 12057 (xpertsmobileapp), pid 12057 (xpertsmobileapp)

Other logs reference ImeTracker, InputMethodManager, and InsetsController right before the crash, suggesting it might be related to UI rendering or input handling.

Additional Info: Using .NET MAUI , .Net 8.0

Developing in Visual Studio 2022

GitHub Desktop is used for version control

The crash disappears if I discard changes to a specific .dll

The app crashes at the same point (after login) for my colleague every time

Developing for android 14.0 with vs emulator

Has anyone encountered a similar issue? What could cause a .dll change to trigger this behavior? Any debugging suggestions would be appreciated.

What have i tried? I tried discarding only the .dll file and it worked, but after restarting visual studio the issue was back. I tried reinstalling the emulator, device etc. but it didn't help. I tried reverting my last changes before the error occured but it didn't help either.

Thank you very much in advance and please let me know if more information is needed as I'm trying to improve my question asking.

本文标签: cNET MAUI App crashes after login with SIGSEGV (Segmentation Fault)Stack Overflow