How to implement deep linking for iOS app on .Net MAUI? #14097
Replies: 3 comments 1 reply
-
for starters
Apple calls deep links - universal links Few more links (Xamarin, should be similar for MAUI): Based on your info I think you should go with universal links for iOS, but before you start try replacing |
Beta Was this translation helpful? Give feedback.
-
@DavidShochet this is how you implement url scheme and not deep linking. They are 2 different things. |
Beta Was this translation helpful? Give feedback.
-
If you don’t control the website that is referenced in a URL, then you can’t do deep linking into your app. Sounds like what worked on Android is that the OS recognized your app as supporting video calling. I don’t know what the equivalent is on iOS. Regardless, the solution won’t be Maui-specific (other than needing to use c# instead of an Apple language). Try asking on StackOverflow. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Discussed in #14093
Originally posted by DavidShochet March 21, 2023
I am having a difficulty implementing deep linking on our app.
Clicking on a link in an email should open the app. As I understand, the execution should come to AppDelegate's OpenUrl() method. The link is for an existing website (https://teams.microsoft.com/meetingOptions/...) that I don't control.
I was able to easily implement this for Android. Upon clicking on the link, I am asked whether I want to open my app or the MS Teams app, and when I select my app, it just opens. But with iOS I am stuck. I cannot find a clear manual on how this can be done.
So far, I found that I need to have this in Info.plist:
But this is definitely not enough.
I would appreciate your help.
Beta Was this translation helpful? Give feedback.
All reactions