For example: in chrome you type "instagram.com/username", after loading will open instagram app with user profile activity
Asked
Active
Viewed 996 times
0
-
1Take a look at https://developer.android.com/training/app-links/deep-linking – Michiel Aug 01 '21 at 11:40
-
Use `ACTION_VIEW` with your desired URL. If the app has registered a deep link, Android will open the associated activity. If not, Android will open a browser on the requested URL. – CommonsWare Aug 01 '21 at 11:52
-
Take a look at this answer https://stackoverflow.com/a/38555465/4593476 – Tosin John Aug 01 '21 at 14:17