2

In my app when I try to use my app link from Google Chrome it works perfectly, but when I use Samsung Internet I find that the deep links don't work, and the URLs open in the browser instead.

Is there a list of compatible/incompatible internet browsers and/or phones that do not support Android App Links?

Or is there something potentially wrong with my app links implementation?

  • App Link is for opening your app, Deep Link is for opening your app and navigate to specified page (destination). Which one you're refering to? – Sam Chen Apr 03 '21 at 22:23
  • 1
    I am also having this problem. In chrome, the app opens normally with the app link, but in Samsung Internet browser, you have to select and open it. Did you solve this problem? – Jungwon Apr 12 '22 at 01:55

2 Answers2

0

Unlike iOS that pushes hard to the use of Universal Links, Google doesn't do that and therefore any browser on Android can decide if they want to use App Links or not.

Most of the browsers usually blocks the use of App Links so there is a need for URI scheme as a fallback to make sure users will get to your app correctly.

reznik
  • 56
  • 2
0

I know there is already correct answer for the question. But I had this same issue with Samsung Internet and was able to solve it by enabling

Settings > Internet Settings > Open links in other apps

enter image description here

Hope this tip might help someone who see the question in the future.

happycoder
  • 927
  • 3
  • 13
  • 28