Mono Runtime Attempts to Load Missing pt-BR Satellite Assemblies Causing Initialization Lag in MAUI App #32019
Unanswered
BrundhaVelusamy
asked this question in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
We’re encountering a recurring issue when running our .NET MAUI app on devices with pt-BR (Portuguese - Brazil) UI settings. Our project is defined with neutral language as en-US, and we do not include localized resource assemblies for pt-BR.
However, during InitializeComponent() execution, the Mono runtime attempts to load satellite assemblies like:
These assemblies do not exist in our app package, and we see repeated log entries like:
This causes noticeable lags and timeouts during initialization, even though the fallback to neutral resources eventually works.
We’ve tried setting:
CultureInfo.DefaultThreadCurrentUICulture = new CultureInfo("en-US");But it didn’t resolve the issue.
Any insights or suggestions from the community would be greatly appreciated!
Thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions