Reputation: 382
I have followed the following doc to implement deep link
https://developer.android.com/training/app-links/deep-linking#java
However, when I try to type the URL in the browser it won't redirect the user to the App. Only if I click on the link it would take me to the App.
Upvotes: 0
Views: 1166
Reputation: 796
If you type the URL in the browser redirecting to your app is not something that's done natively by default.
This can be achieved by writing some extra code on your website. You can check every time the page is a load if the user is coming from his android phone and call redirect with that same URL.
Make sure you properly verify your app links following the (https://developer.android.com/training/app-links/verify-site-associations) tutorial so your users are not prompted with the view intent but redirected to the app properly.
Upvotes: 1