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
Occurs when the app is showing a popup from Mopups (1.3.1) and has to display a Map (Microsoft.Maui.Controls.Maps). Permission to access location is requested and when accepted, the app crashes.
Note: the workaround used in this issue (#95) prevents the crash.
public override void OnActivated(UIApplication application)
{
(application.ConnectedScenes.AnyObject as UIWindowScene)?.Windows.FirstOrDefault()?.MakeKeyWindow();
base.OnActivated(application);
}
public override void OnResignActivation(UIApplication application)
{
(application.ConnectedScenes.AnyObject as UIWindowScene)?.Windows.FirstOrDefault()?.MakeKeyWindow();
base.OnResignActivation(application);
}
The text was updated successfully, but these errors were encountered:
Occurs when the app is showing a popup from Mopups (1.3.1) and has to display a Map (Microsoft.Maui.Controls.Maps). Permission to access location is requested and when accepted, the app crashes.
Note: the workaround used in this issue (#95) prevents the crash.
The text was updated successfully, but these errors were encountered: