Is there a way to share application page URI using Xamarin Essentials Share and when other user clicks on same shared URI it should open application if it's installed? Do I need to use App links? The issue is I don't have website and cannot use app links. Any hints would be helpful.
Asked
Active
Viewed 682 times
-1
-
refer to https://learn.microsoft.com/en-us/xamarin/xamarin-forms/app-fundamentals/deep-linking – Wen xu Li Oct 20 '21 at 09:41
-
I already gone through it, as I mentioned I don't have website and this document doesn't give much details for IOS. – Zeeshan shaikh Oct 20 '21 at 09:47
-
I see that you have used deep linking and seem to have encountered new problems. – Wen xu Li Oct 22 '21 at 02:19
1 Answers
1
For Android, if your targetted app support Deep Linking then you can open/share formatted link of that app.
For example of Whatsapp, you can create link following this format
So you just need to share the formatted link using Xamarin.Essentials Share and then you will be redirected to that app.

cahyo
- 597
- 2
- 5
- 14
-
It's actually my own application link, I want to share a page of my application via WhatsApp or email and when user clicks it they will be navigate to my application if is installed. My application doesn't have deep linking functionality in place, we cannot do without implementing deep linking? – Zeeshan shaikh Oct 19 '21 at 05:20
-
-
-
@Zeeshanshaikh this is the way of doing this. You can spin up a quick and simple website on Netlify if it's the only blocker. – kissu Oct 21 '21 at 09:46
-
is it only required to verify domain or the same link path should work on website as well? – Zeeshan shaikh Oct 21 '21 at 12:32