I have a .Net MAUI app that needs to open when a user clicks on a link in an email.
The url is from a MS Teams meeting reminder, e.g.
I successfully implemented this for Android, but on an iOS simulator clicking the link opens just a regular Teams website, or (I assume) the Teams app, if it was installed on the simulator.
Here is what I have in Info.plist:
I expect the user to get options what to open upon clicking the link: either the Teams app, or Teams website, or our app, and execution to come to AppDelegate's OpenUrl(UIApplication app, NSUrl url, NSDictionary options).
I guess I am missing some configuration, but can't figure out what that is.
It would be good if I could implement this without creating additional websites, as some solution suggest.