I'm developing an Expo app and I'm using Firebase dynamic links in order to open the reset password link inside the app. Everything is working perfectly, except that when I test the app on Android, it gives me the option to open the link either in my app or in Chrome. Is there any way I can force the link to always open in my app without giving options to the user?
Asked
Active
Viewed 935 times
1

Doug Stevenson
- 297,357
- 32
- 422
- 441

ataravati
- 8,891
- 9
- 57
- 89
-
how did you add firebase dynamic links to an expo app? do you have any manual for that? – user1974368 Jan 17 '21 at 13:53
-
1@user1974368 https://stackoverflow.com/questions/62415111/is-there-a-way-to-integrate-an-expo-app-with-firebase-dynamic-links-without-deta – ataravati Jan 17 '21 at 15:30
1 Answers
0
Opening a web link on Android device will observe the user's preferences for how they want to open that link. The link can't somehow override the user's preference.
If you're writing Android code to programmatically open a link, you have some options, but for general purpose web use, the user's preference is always honored.

Doug Stevenson
- 297,357
- 32
- 422
- 441