Tomasz Cielecki
                                            Tomasz Cielecki
                                        
                                    Need more information here. Does this freeze lead to a crash? Any debug or logcat info to go off? Could you also please use the issue template.
It isn't designed to work standalone, so it relies on MvvmCross being started before being used. I think mostly for logging. So we could probably fix this to allow it...
This PR is actually pretty cool. I think we should get it into MvvmCross 7.0.0. Sorry for dragging this out @softlion
@Hackmodford the approach here with having to create Application class is fine. However, coming in MAUI and I've also been thinking about it, we would need to provide an AppHost....
> for a MvvmCross beginner it is not obvious how to properly implement IMvxIoCProvider Like anything else in MvvmCross, impement the interface and register it in Setup.cs in the appropriate...
Nope. Haven't had the time to do it.
Currently using this way to make a weak subscription: ``` var interactionRequested = Observable.FromEventPattern( h => _derp.Requested += h, h => _derp.Requested -= h); _subscription = interactionRequested.Subscribe(DoDerp); ```
I have other Weak Subscriptions working fine on iOS. To me it only seems like the MvxInteraction ones are broken.
Still waiting for author of Serilog.Extensions.Logging to review and accept my PR here: https://github.com/serilog/serilog-extensions-logging/pull/191 That should solve the issue here.
I would definitely not mind a community contribution for this. I haven't had the need to support multiple windows on iPad yet. As for tracking which window, ViewControllers should present....