You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It appears that the default application is crashing when attempting to focus on an entry field in an iOS simulator. The crash report indicates that the crash is happening due to a signal 6 abort trap.
1. Open the default .NET MAUI application project.
2. Navigate to the MainPage.xaml file.
3. Add an <Entry/> element inside the XAML markup.
4. Build/Run the project in an iOS simulator.
5. Once the application is launched in the simulator,
interact with the user interface to bring focus to the <Entry/> element.
Attempt to touch or tap on the <Entry/> element.
unknown, I just come back to see how .Net MAUI is doing.
Affected platforms
iOS
Affected platform versions
No response
Did you find any workaround?
No
Relevant log output
The stack trace provided in the crash report indicates that the crash occurs while updating the keyboard layout in response to focusing on the entry field. The crash seems to be related to handling keyboard input and formatting numbers using ICU (International Components for Unicode), specifically when attempting to create a number formatter.
Here's a breakdown of the relevant parts of the stack trace:
The crash occurs in the main thread (Thread 0) while updating the keyboard layout.
The crash happens within the UIKeyboardGetNumbersStringForActiveInputMode function, which suggests it's related to handling keyboard input.
The crash trace then goes into formatting number-related operations using ICU (libicucore.A.dylib), where it eventually results in an abort trap.
Given this information, it seems that there might be an issue with number formatting or handling keyboard input in your .NET MAUI application, possibly related to the ICU library.
Given this information, it seems that there might be an issue with number formatting or handling keyboard input in your .NET MAUI application, possibly related to the ICU library.
Description
It appears that the default application is crashing when attempting to focus on an entry field in an iOS simulator. The crash report indicates that the crash is happening due to a signal 6 abort trap.
Steps to Reproduce
Link to public reproduction project repository
branch issue/21541
Version with bug
8.0.10 SR3
Is this a regression from previous behavior?
Yes, this used to work in .NET MAUI
Last version that worked well
unknown, I just come back to see how .Net MAUI is doing.
Affected platforms
iOS
Affected platform versions
No response
Did you find any workaround?
No
Relevant log output
The stack trace provided in the crash report indicates that the crash occurs while updating the keyboard layout in response to focusing on the entry field. The crash seems to be related to handling keyboard input and formatting numbers using ICU (International Components for Unicode), specifically when attempting to create a number formatter.
Here's a breakdown of the relevant parts of the stack trace:
Given this information, it seems that there might be an issue with number formatting or handling keyboard input in your .NET MAUI application, possibly related to the ICU library.
The text was updated successfully, but these errors were encountered: