Leo, Do you have the same solution for Android using MAUI?
I'm trying to find the same OpenUrl(...) method for Android using MAUI. Can you help me, please?
public override bool OpenUrl (UIApplication app, NSUrl url, string sourceApp, NSObject annotation){
if (url.BaseUrl.Host.Equals ("app.myapp.io")) {
UIViewController page = new TargetPage().CreateViewController();
}
return true;
}