.Net Maui, The app is not working in Release mode but working in Debug Mode #3259
Unanswered
Nandulucky
asked this question in
.NET MAUI
Replies: 3 comments 6 replies
-
Same, any help ? |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi, which is the value of AppConstants.MainPage or AppConstants.LoginPage during the call? |
Beta Was this translation helpful? Give feedback.
0 replies
-
Reproducible as described. @brianlagunas @dansiegel is this something we can have investigated? Logcat provides the following Stacktrace for the following. .UsePrism(prismAppBuilder =>
{
prismAppBuilder.RegisterTypes(containerRegistry =>
{
registerPages(containerRegistry);
registerCustomServices(containerRegistry);
registerMauiCoreServices(containerRegistry);
registerEssentials(containerRegistry);
}).CreateWindow(async (navigationService) => await navigationService.NavigateAsync($"{nameof(NavigationPage)}/{PageNames.GettingStartedPage}").ConfigureAwait(true));
})
|
Beta Was this translation helpful? Give feedback.
6 replies
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.
Uh oh!
There was an error while loading. Please reload this page.
-
I am Migrating Xamarin forms into Maui, I am using Prism but I am unable to run the app in release mode
I am facing the error is
Already I created CreateWindow in Mauiprogram.cs file
How can I fix this issue? In release mode app is installing and when it opens app, the app is crash with the error No Root Window has been created
I am using the prism packages are
<PackageReference Include="Prism.Container.DryIoc" Version="9.0.107" /> <PackageReference Include="Prism.Core" Version="9.0.537" /> <PackageReference Include="Prism.DryIoc.Maui" Version="9.0.537" />
Beta Was this translation helpful? Give feedback.
All reactions