Jonathan Peppers
Jonathan Peppers
@wagaana did you profile your app? If you could share a sample project or `.speedscope` file: https://aka.ms/profile-maui I don't know of any performance regression going from .NET 7 to .NET...
@marcmarsinach did you already review some of the instructions at the top here: https://aka.ms/profile-maui
> Any news here? Have same problem, in emulator is ok, but on physical android device unusable This sounds backwards to me: my experience is that something like even a...
Oh whoops, the new test fails on Android: ``` System.InvalidOperationException : MauiContext did not have a valid window. ``` And maybe leaks on iOS: ``` Reference to Microsoft.Maui.Controls.Window (type Microsoft.Maui.Controls.Window...
There is a lack of information here, to know what went wrong. @gabriel-kozma said: > it was a combination of and IL stripping, is there a way to control IL...
You could comment on https://github.com/dotnet/runtime/pull/103975 and ask if it is going back to .NET 8.
On Android, .NET assemblies are compressed into a single file that can be [`mmap`'d](https://man7.org/linux/man-pages/man2/mmap.2.html) in one call. You can use either of these tools to inspect or pull them out...
**Update**: I just reverted my changes related to the events, and it seems like maybe only `NavigationViewItemViewModel.Data` is a problem? Will know for sure when CI is working again.